/// /** * A primitive useful for grid layouts. Grid is Box with display: grid and it comes with helpful style shorthand. It renders a div element. * Grid: The main wrapper with display: grid. * https://chakra-ui.com/docs/layout/grid */ export declare function Grid({ ...props }: any): JSX.Element; /** * GridItem: Used as a child of Grid to control the span, and start positions within the grid. * * https://chakra-ui.com/docs/layout/grid */ export declare function GridItem({ ...props }: any): JSX.Element; //# sourceMappingURL=Grid.d.ts.map