import { ForwardRefExoticComponent } from "react"; import { BoxProps } from "../Box"; interface GridProps extends BoxProps { columns?: string[]; rows?: string[]; gap?: string; } interface GridItemProps extends BoxProps { column?: string; row?: string; area?: string; } export declare type GridWithItem = ForwardRefExoticComponent & { Item: (props: GridItemProps) => JSX.Element | null; }; export declare const GridItem: ForwardRefExoticComponent; export declare const Grid: GridWithItem; export {};