import { GridItemProps } from '../grid/GridItem'; import { HTMLAttributes, ReactElement } from 'react'; export interface GridProps extends HTMLAttributes { /** Takes single or multiple `` elements as children */ children: ReactElement | ReactElement[]; } /** * The `` component is a container for a two-dimensional layout. * It makes heavy use of the native css `grid` properties. * * See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Grids) for further information about the CSS module and related properties. */ declare const Grid: import("react").ForwardRefExoticComponent>; export default Grid;