import { CSS } from '@project44-manifest/react-styles';
import type { ForwardRefComponent } from '@project44-manifest/react-types';
interface ContainerProps {
    /** Theme aware style object */
    css?: CSS;
    /**
     * Whether the container should adjust its max-width based on the current screen size.
     *
     * @default true
     */
    fixed?: boolean;
    /**
     * The max-width of the container.
     *
     * @default 'large'
     */
    maxWidth?: 'large' | 'medium' | 'small' | 'x-large' | 'x-small';
}
declare const Container: ForwardRefComponent<"div", ContainerProps>;
export type { ContainerProps };
export { Container };
//# sourceMappingURL=container.d.ts.map