type Subpage = [title: string, href: string, description: string];
type $$ComponentProps = {
    title: string;
    subtitle: string;
    subpages: Subpage[];
};
declare const SubpageGrid: import("svelte").Component<$$ComponentProps, {}, "">;
type SubpageGrid = ReturnType<typeof SubpageGrid>;
export default SubpageGrid;
