/// export interface ITextProps { content?: string; __html?: string; style?: any; mode?: 'normal' | 'h1' | 'h2' | 'h3' | 'p' | 'div' | 'span'; textFlow?: number; } export declare const Text: ({ content, __html, mode, textFlow, ...props }: ITextProps) => JSX.Element;