///
import Col from './col';
import Row from './row';
import GridItem from './grid-item';
declare const Grid: import("react").ForwardRefExoticComponent> & {
Col: typeof Col;
Row: typeof Row;
GridItem: typeof GridItem;
};
export default Grid;
export { RowProps, ColProps, GridProps, ResponsiveValue } from './interface';