import { OnInit } from '@angular/core'; import { Styles, Theme } from '../../types/index'; import { Ground, GroundProps } from '../ground/index'; declare type FixedProp = boolean | string; declare type MaxWidthProp = string | false; export interface ContainerProps extends GroundProps { fixed?: FixedProp; maxWidth?: MaxWidthProp; } export declare const ContainerClassKey: string; export declare type ContainerClasses = 'root' | 'fixed' | 'maxWidthLg' | 'maxWidthMd' | 'maxWidthSm' | 'maxWidthXl' | 'maxWidthXs'; export declare function ContainerStyles(theme: Theme): Styles; export declare class Container extends Ground implements OnInit { fixed: FixedProp; maxWidth: MaxWidthProp; ngOnInit(): void; composeClasses(): void; } export {};