/// /** * SimpleGrid provides a friendly interface to create responsive grid layouts with ease. It renders a div element with display: grid. * To make the grid responsive and adjust automatically without passing columns, simply pass the minChildWidth prop to specify the min-width a child should have before adjusting the layout. This uses css grid auto-fit and minmax() internally. * SimpleGrid composes Box so you can pass all the Box props and css grid props * https://chakra-ui.com/docs/layout/simple-grid */ export declare function SimpleGrid({ ...props }: any): JSX.Element; //# sourceMappingURL=SimpleGrid.d.ts.map