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