import * as React from 'react'; import { PropsWithChildren } from 'react'; export declare type ColumnSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare type ColumnSizeWithAuto = ColumnSize | 'auto'; export declare type ColumnSizeWithOrder = ColumnSize | 'first' | 'last'; interface IProps { className?: string; col?: ColumnSizeWithAuto; xs?: ColumnSizeWithAuto; sm?: ColumnSizeWithAuto; md?: ColumnSizeWithAuto; lg?: ColumnSizeWithAuto; xl?: ColumnSizeWithAuto; xxl?: ColumnSizeWithAuto; order?: ColumnSizeWithOrder; offsetXs?: ColumnSize; offsetSm?: ColumnSize; offsetMd?: ColumnSize; offsetLg?: ColumnSize; offsetXl?: ColumnSize; offsetXxl?: ColumnSize; } export declare const Column: React.FC & React.HTMLProps>; export {};