import { type BoxProps } from '../Box'; export type GridProps = BoxProps & { xs?: boolean; sm?: boolean; md?: boolean; lg?: boolean; xl?: boolean; }; declare const Grid: { ({ xs, sm, md, lg, xl, ...props }: GridProps): import("react/jsx-runtime").JSX.Element; Item: ({ xs, sm, md, lg, xl, ...props }: import("./GridItem").GridItemProps) => import("react/jsx-runtime").JSX.Element; }; export default Grid; //# sourceMappingURL=Grid.d.ts.map