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