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