/// <reference types="react" />
import { GridProps } from "./grid";
import GridItem from "./grid-item";
interface GridInterface {
    (props: GridProps): JSX.Element;
    Item: typeof GridItem;
}
declare const Grid: GridInterface;
export default Grid;
