import { default as React } from 'react'; export interface GridProps extends Omit, "children"> { /** * Grid items */ children: React.ReactNode; /** * Number of columns */ columns?: "1" | "2" | "auto"; /** * Items alignment. * When not set all items will hame same height (items-stretch) */ alignItems?: "center" | "start" | "end"; } /** * Render the children as a grid. * By default the grid will have 1 column and al items will have same height. * It's possible to set the number of columns and the alignment of the items. */ declare function Grid({ children, columns, className, alignItems, ...rest }: GridProps): React.JSX.Element; declare namespace Grid { var displayName: string; } export { Grid };