import { ReactNode } from 'react'; import { ContainerProps as BaseContainerProps } from '@material-ui/core/Container'; import { CSSProperties } from '@material-ui/styles'; export interface ContainerProps extends Pick { children?: ReactNode; fluid?: boolean; center?: boolean; style?: CSSProperties; className?: string; } /** * Container with max width */ export default function Container({ children, maxWidth, center, fluid, style, className, }: ContainerProps): JSX.Element;