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