import { FunctionComponent } from 'react'; import { IProps } from '../_common/props'; declare type GridDimensionRange = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | true; interface IBreakpoint { [key: string]: number | undefined; xs?: number; sm?: number; md?: number; xl?: number; lg?: number; } interface IGrid extends IProps { container?: boolean; item?: boolean; direction?: 'row' | 'column'; xs?: GridDimensionRange; sm?: GridDimensionRange; md?: GridDimensionRange; lg?: GridDimensionRange; xl?: GridDimensionRange; offset?: IBreakpoint; gutter?: number | IBreakpoint; alignItems?: 'center' | 'flex-start' | 'flex-end' | 'baseline'; justify?: 'flex-start' | 'flex-end' | 'space-between' | 'center' | 'space-around' | 'space-evenly'; onClick?: () => void; } declare const Grid: FunctionComponent; export default Grid; //# sourceMappingURL=Grid.d.ts.map