import * as React from 'react';
import { BoxProps } from '../Box';
export interface ContainerProps extends BoxProps {
    /** If `true`, container will center its children. */
    isCentered?: boolean;
}
export declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
