///
import { FlexProps as RawFlexProps, BoxProps as RawBoxProps } from 'rebass';
import { AllStyleProps } from '../../../utils/styledSystem';
export * from './Cell';
export * from './Grid';
export declare const Box: import("react").FunctionComponent;
export declare const Flex: import("react").FunctionComponent;
export interface BoxProps extends RawBoxProps, AllStyleProps {
height?: any;
}
export interface FlexProps extends RawFlexProps, AllStyleProps {
height?: any;
isContentCentered?: boolean;
}