import { RecursivePartial } from '../typings'; import { IText } from '../blocks'; import { MjmlBlockProps } from '../components/MjmlBlock'; export declare type TextProps = RecursivePartial & RecursivePartial & { children?: MjmlBlockProps['children']; }; export declare function Text(props: TextProps): JSX.Element;