import { PropsOf, nature } from '@nature-ui/system';

type ContainerProps = PropsOf<typeof nature.div> & {
    size?: string | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
    centerContent?: boolean;
    centered?: boolean;
};
declare const Container: {
    (props: ContainerProps): JSX.Element;
    displayName: string;
};

export { Container, ContainerProps };
