import React from "react"; import { BoxProps } from "./box"; interface GridProps extends Omit { columns?: string; rows?: string; gap?: string; } declare function Grid({ columns, rows, gap, className, children, ...rest }: GridProps): React.JSX.Element; export default Grid;