type Align = 'start' | 'center' | 'end' | 'stretch' | 'baseline'; type Justify = 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'; interface Props { children?: import('svelte').Snippet; gap?: string | number; align?: Align; justify?: Justify; direction?: 'vertical' | 'horizontal'; wrap?: boolean; class?: string; style?: string; } declare const Stack: import("svelte").Component; type Stack = ReturnType; export default Stack;