declare const verticalPadding: { readonly custom: ""; readonly xsmall: "py-4"; readonly small: "py-8"; readonly medium: "py-12"; readonly large: "py-24"; readonly default: "py-12"; }; declare const widthClass: { readonly small: "max-w-4xl"; readonly medium: "max-w-5xl"; readonly large: "max-w-9xl"; readonly default: "max-w-9xl"; readonly custom: ""; }; type ContainerProps = { size?: keyof typeof verticalPadding; width?: keyof typeof widthClass; padding?: string; className?: string; children: React.ReactNode; } & React.HTMLAttributes; export declare const Container: ({ children, size, width, padding, className, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element; export {};