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