///
import { OverflowProps, DisplayProps, TextAlignProps, BorderProps, BorderTopProps, BorderRightProps, BorderLeftProps, BorderBottomProps, OpacityProps, BorderRadiusProps, BoxShadowProps, BorderColorProps } from 'styled-system';
export declare const Grid: import("react").FunctionComponent;
export interface GridProps extends OverflowProps, DisplayProps, TextAlignProps, BorderProps, BorderTopProps, BorderBottomProps, BorderLeftProps, BorderRightProps, OpacityProps, BorderRadiusProps, BoxShadowProps, BorderColorProps {
className?: string;
columns?: number | string;
gap?: string;
columnGap?: string;
rowGap?: string;
height?: string;
minRowHeight?: string;
flow?: string;
rows?: number | string;
areas?: string[];
justifyContent?: string;
alignContent?: string;
}