import { ContainerProps } from './types'; /** * MUI-free `Container`: full-width, horizontally centred, with default 16px gutters and a * breakpoint `maxWidth` (default `lg`). `fixed` is not reproduced (rare). TASK-102. */ export declare const Container: ({ maxWidth, disableGutters, className, sx, style, component, children, fixed: _fixed, ...rest }: ContainerProps) => JSX.Element;