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