import type { Snippet } from 'svelte'; type StackGap = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; type StackAlign = 'start' | 'center' | 'end' | 'stretch' | 'baseline'; type StackJustify = 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'; type StackDirection = 'vertical' | 'horizontal'; interface StackProps { gap?: StackGap; align?: StackAlign; justify?: StackJustify; direction?: StackDirection; class?: string; children?: Snippet; } declare const Stack: import("svelte").Component; type Stack = ReturnType; export default Stack;