import type { ReusableBoxProps } from '../box'; import type { Space } from '../utils/common-types'; import type { ResponsiveBreakpoints, ResponsiveProp } from '../utils/responsive-props'; type ColumnWidth = 'auto' | 'content' | '1/2' | '1/3' | '2/3' | '1/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5'; interface ColumnProps { width?: ColumnWidth; } declare const Column: import("../utils/polymorphism").PolymorphicComponent<"div", ColumnProps, "obfuscateClassName">; type ColumnsHorizontalAlignment = 'left' | 'center' | 'right'; type ColumnsVerticalAlignment = 'top' | 'center' | 'bottom' | 'baseline'; type ColumnsCollapseBelow = Exclude; interface ColumnsProps extends ReusableBoxProps { space?: ResponsiveProp; align?: ResponsiveProp; alignY?: ResponsiveProp; collapseBelow?: ResponsiveBreakpoints; } declare const Columns: import("../utils/polymorphism").PolymorphicComponent<"div", ColumnsProps, "obfuscateClassName">; export type { ColumnProps, ColumnsCollapseBelow, ColumnsHorizontalAlignment, ColumnsProps, ColumnsVerticalAlignment, ColumnWidth, }; export { Column, Columns };