import type { SxProps } from '@mui/material';
import { Breakpoint } from '@mui/system';
import * as React from 'react';
import { FC } from 'react';
export interface ContainerProps {
    sx?: SxProps;
    maxWidth?: Breakpoint | false;
    children: React.ReactNode;
}
declare const Container: FC<ContainerProps>;
export default Container;
