type Direction = 'row' | 'row-reverse' | 'column' | 'column-reverse'; type Align = 'start' | 'center' | 'end' | 'stretch' | 'baseline'; type Justify = 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly'; type Wrap = 'nowrap' | 'wrap' | 'wrap-reverse'; interface Props { children?: import('svelte').Snippet; direction?: Direction; align?: Align; justify?: Justify; wrap?: Wrap; gap?: string | number; inline?: boolean; class?: string; style?: string; } declare const Flex: import("svelte").Component; type Flex = ReturnType; export default Flex;