/// export interface Props { children: any; first?: boolean; overflow?: boolean; width?: number; } declare const ColumnDoc: ({children, first, overflow, width}: Props) => JSX.Element; export default ColumnDoc;