///
import { BoxProps } from '../Box';
export declare type LocalGridItemProps = {
area?: string | number;
column?: string | number;
row?: string | number;
columnStart?: string | number;
columnEnd?: string | number;
rowStart?: string | number;
rowEnd?: string | number;
};
export declare type GridItemProps = BoxProps & LocalGridItemProps;
export declare const GridItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};