import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; import type { FlexAlign, FlexJustify } from "./Flex.svelte"; export type StackProps = Omit, "class"> & { /** Spacing scale step (0..12) mapped to `--st-spacing-*`. */ gap?: number; align?: FlexAlign; justify?: FlexJustify; as?: string; class?: string; children?: Snippet; }; declare const Stack: import("svelte").Component; type Stack = ReturnType; export default Stack; //# sourceMappingURL=Stack.svelte.d.ts.map