import type { Snippet } from 'svelte'; type GridGap = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; type GridCols = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; type GridColsConfig = GridCols | { base?: GridCols; sm?: GridCols; md?: GridCols; lg?: GridCols; xl?: GridCols; '2xl'?: GridCols; }; interface GridProps { cols?: GridColsConfig; gap?: GridGap; class?: string; children?: Snippet; } declare const Grid: import("svelte").Component; type Grid = ReturnType; export default Grid;