import React from "react"; import { GridOwnProps, PolymorphicWithRef } from "../types"; declare type GridProps = PolymorphicWithRef; declare type GridElement = = "div">(props: GridProps) => React.ReactElement>; /** * **A Grid is a two dimensional layout utility that arranges elements in rows and columns.** \ * By default it has 12 columns. */ declare const Grid: GridElement & { Item: >(props: import("../types").GridItemOwnProps & import("../types/PolymorphicWithRef").ComponentProp & Omit>, keyof import("../types").GridItemOwnProps | "component">) => React.ReactElement & Omit>, keyof import("../types").GridItemOwnProps | "component">, string | React.JSXElementConstructor>; }; export default Grid; //# sourceMappingURL=Grid.d.ts.map