import { type Snippet } from "svelte"; type $$ComponentProps = { children?: Snippet; cols?: number; }; declare const CardGrid: import("svelte").Component<$$ComponentProps, {}, "">; type CardGrid = ReturnType; export default CardGrid;