import type { ComponentType, SvelteComponentTyped } from 'svelte'; export declare const stories: Record; story: StoryDef; }>; export declare function getStoryById(groupId: string, storyId: string): { default: ComponentType>; story: StoryDef; } | undefined; export declare function getStoriesByGroupId(groupId: string): { default: ComponentType>; story: StoryDef; }[]; export type StoryDef = { group: string; id: string; title: string; description: string; };