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