import { ElementChildren, ColumnElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type ColumnProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | ColumnElement["children"]; data?: ColumnElement["data"]; }; export declare function Column(props: ColumnProps): React.JSX.Element;