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