export interface ContainerProps { /** * Set min height as screen size. Default is `true`. */ minHeight?: boolean; /** * CSS class name */ className?: string; /** * Content to be rendered inside the container */ children: React.ReactNode; } /** This component can be used to constrain a content's width to the current breakpoint, while keeping it fluid. */ export declare const Container: React.FC;