/// import { Size } from '../Space'; import { StackProps } from './Stack'; export declare type GridProps = StackProps & { columnSpace?: Size; rowSpace?: Size; itemMinWidth?: number | string; itemMaxWidth?: number | string; itemMinHeight?: number | string; itemMaxHeight?: number | string; gap?: number | string; }; export declare const Grid: { (props: GridProps): JSX.Element; ignoreAttrs: { [key: string]: boolean; }; acceptsSpacing: boolean; }; //# sourceMappingURL=Grid.d.ts.map