import type { FC } from 'react'; export interface TextProps { style?: React.CSSProperties; } declare const Text: FC; export default Text;