import React from 'react'; export interface TextProps { data: string | string[]; html: boolean; block: boolean; } export declare const Text: React.FC;