import type { IconName } from '../icons'; interface Props { title: string; subtitle: string; subpages: { href: string; title: string; description: string; icon: IconName; }[]; } declare const SubpageGrid: import("svelte").Component; type SubpageGrid = ReturnType; export default SubpageGrid;