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