import { PropsWithChildren } from 'react'; interface ContainerProps { size?: 'small' | 'medium' | 'large' | 'large-full-height'; visible?: boolean; centerContent?: boolean; padded?: boolean; } export declare const Container: ({ children, size, centerContent, visible, padded, }: PropsWithChildren) => import("react").JSX.Element; export {};