import type { Snippet } from 'svelte'; type $$ComponentProps = { /** Section heading above the grid. */ title?: string; /** Supporting line below the heading. */ description?: string; /** Columns at the widest breakpoint; the grid steps down on smaller screens. */ columns?: 2 | 3; /** * `muted` gives the section a tinted band with rules above and below, for * alternating against neighbouring sections. */ background?: 'default' | 'muted'; /** The `` cells. */ children: Snippet; }; declare const FeatureGrid: import("svelte").Component<$$ComponentProps, {}, "">; type FeatureGrid = ReturnType; export default FeatureGrid;