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