type Align = 'start' | 'center' | 'end' | 'stretch'; type Justify = 'start' | 'center' | 'end' | 'stretch'; interface Props { children?: import('svelte').Snippet; cols?: number | string; rows?: number | string; gap?: string | number; colGap?: string | number; rowGap?: string | number; minColWidth?: string; align?: Align; justify?: Justify; inline?: boolean; class?: string; style?: string; } declare const Grid: import("svelte").Component; type Grid = ReturnType; export default Grid;