import { LitElement } from "lit"; import type { TemplateResult } from "lit"; type StackDirection = "vertical" | "horizontal"; type StackGap = "none" | "xs" | "sm" | "md" | "lg" | "xl"; type StackAlign = "start" | "center" | "end" | "stretch"; type StackJustify = "start" | "center" | "end" | "between"; export declare class XmStack extends LitElement { static styles: CSSStyleSheet[]; direction: StackDirection; gap: StackGap; align: StackAlign; justify: StackJustify; wrap: boolean; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { "xm-stack": XmStack; } } export {};