import { DialogElement } from "../../internal/dialog-element.js"; type DrawerPlacement = (typeof DrawerPlacement)[keyof typeof DrawerPlacement]; declare const DrawerPlacement: { readonly START: "start"; readonly END: "end"; readonly TOP: "top"; readonly BOTTOM: "bottom"; }; type DrawerSize = (typeof DrawerSize)[keyof typeof DrawerSize]; declare const DrawerSize: { readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; }; type DrawerVariant = (typeof DrawerVariant)[keyof typeof DrawerVariant]; declare const DrawerVariant: { readonly DEFAULT: "default"; readonly GHOST: "ghost"; }; declare global { interface HTMLElementTagNameMap { 'odx-drawer': OdxDrawer; } } declare class OdxDrawer extends DialogElement { static tagName: string; static styles: import("lit").CSSResult[]; placement: DrawerPlacement; size: DrawerSize; variant: DrawerVariant; } export { DrawerPlacement, DrawerSize, DrawerVariant, OdxDrawer };