import React from 'react'; import { type BoxElement, type BoxProps } from '../Box'; import type { PolymorphicRef } from '../types/polymorphic'; export type GridProps = Omit, 'display'> & { columns?: number | string; rows?: number | string; autoFlow?: React.CSSProperties['gridAutoFlow']; alignItems?: React.CSSProperties['alignItems']; justifyItems?: React.CSSProperties['justifyItems']; }; type GridComponent = ((props: Readonly> & { ref?: PolymorphicRef; }) => React.ReactElement | null) & { displayName?: string; }; declare const Grid: GridComponent; export default Grid; //# sourceMappingURL=index.d.ts.map