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