export type SwirlStackAlign = "start" | "center" | "end" | "stretch"; export type SwirlStackJustify = "start" | "center" | "end" | "space-between" | "space-around" | "space-evenly" | "stretch"; export type SwirlStackOrientation = "horizontal" | "horizontal-reverse" | "vertical" | "vertical-reverse"; export type SwirlStackSpacing = "0" | "2" | "4" | "8" | "12" | "16" | "24" | "32" | "40" | "48" | "64"; /** * @slot slot - The stack items. */ export declare class SwirlStack { align?: SwirlStackAlign; as?: string; height?: string; justify?: SwirlStackJustify; orientation?: SwirlStackOrientation; columnSpacing?: SwirlStackSpacing; rowSpacing?: SwirlStackSpacing; spacing?: SwirlStackSpacing; swirlAriaRole?: string; wrap?: boolean; render(): any; }