import { CSSProperties, ElementType, ReactNode } from 'react';
export interface ContainerProps {
    children?: ReactNode;
    /** Maximum width breakpoint. false = fluid (no max-width). Default: "lg" */
    maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | false;
    /** If true, the container uses position: fixed */
    fixed?: boolean;
    /** If true, removes horizontal padding (gutters) */
    disableGutters?: boolean;
    /** Override the root element (default: "div") */
    component?: ElementType;
    style?: CSSProperties;
    className?: string;
    id?: string;
    [key: string]: any;
}
declare const Container: import('react').ForwardRefExoticComponent<Omit<ContainerProps, "ref"> & import('react').RefAttributes<HTMLElement>>;
export default Container;
