///
import { BoxProps } from '../Box';
export declare type LocalGridProps = {
autoFlow?: 'row' | 'column' | 'dense';
gap?: string | number;
template?: string | number;
templateAreas?: string | number;
templateColumns?: string | number;
templateRows?: string | number;
autoColumns?: string | number;
autoRows?: string | number;
};
export declare type GridProps = BoxProps & LocalGridProps;
export declare const Grid: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};