import { CustomElement } from "../../internal/custom-element.js"; import { TemplateResult } from "lit"; type PageLayoutAlignment = (typeof PageLayoutAlignment)[keyof typeof PageLayoutAlignment]; declare const PageLayoutAlignment: { readonly START: "start"; readonly CENTER: "center"; }; type PageLayoutSize = (typeof PageLayoutSize)[keyof typeof PageLayoutSize]; declare const PageLayoutSize: { readonly AUTO: "auto"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; }; declare global { interface HTMLElementTagNameMap { 'odx-page-layout': OdxPageLayout; } } declare class OdxPageLayout extends CustomElement { #private; static tagName: string; static styles: import("lit").CSSResult[]; alignment: PageLayoutAlignment; size: PageLayoutSize; protected render(): TemplateResult; } export { OdxPageLayout, PageLayoutAlignment, PageLayoutSize };