import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface UNSTABLE_ContainerProps extends CommonProps { /** The contents of the container. */ children: ReactNode; /** * The type of the container. * @default 'padded' */ type?: 'padded' | 'full-width' | 'fixed-width'; } export declare function UNSTABLE_Container({ children, UNSAFE_className, UNSAFE_style, type, ...props }: UNSTABLE_ContainerProps): import("react/jsx-runtime").JSX.Element; export declare namespace UNSTABLE_Container { var displayName: string; } //# sourceMappingURL=container.d.ts.map