import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface ContainerProps { sx?: SxProps; maxWidth?: string; flex?: boolean; fixed?: boolean; disableGutters?: boolean; className?: string; children?: React.ReactNode; } export declare const Container: FC; export {};