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; }; type $$ComponentProps = { cols?: GridColsConfig; }; declare const GridStory: import("svelte").Component<$$ComponentProps, {}, "">; type GridStory = ReturnType; export default GridStory;