import { LitElement } from 'lit'; /** * Container component with responsive max-width and padding * * @slot - Default slot for content * * @csspart container - The container element */ export declare class UIContainer extends LitElement { static styles: import("lit").CSSResult; size: 'sm' | 'md' | 'lg' | 'xl' | 'full'; fluid: boolean; /** * Accessible label for the container */ ariaLabel: string | null; private containerId; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ui-container': UIContainer; } } //# sourceMappingURL=container.d.ts.map