import { BoxProps, ChakraComponent } from '@chakra-ui/react'; import { default as React } from 'react'; export declare const gridGapsArray: readonly ["grid.xxs", "grid.xs", "grid.s", "grid.m", "grid.l", "grid.xl", "grid.xxl"]; export type GridGaps = typeof gridGapsArray[number]; export interface SimpleGridProps extends BoxProps { /** Optional numeric value to override the default column count; the default * column count is 3. */ columns?: number; /** Optional gap size; if omitted, the default `large` (2rem / 32px) spacing * will be used; `IMPORTANT: for standard grid layouts, this prop should * not be used.` */ gap?: GridGaps; } export declare const SimpleGrid: ChakraComponent & React.RefAttributes>, React.PropsWithChildren>; export default SimpleGrid;