I also faced the same problem. Add below code to work with .tsx components.
export interface Props {
term: string;
}
or
export type Props = {
term ?: string;
}
I dont know the exact reason, but i think typescript flag the type error during compilation phase. Let me know if it works for you.