export interface UserStory { ruleId: string; stories: string[]; } export declare class UserStoryService { private static instance; private userStories; private rulesData; private loaded; static getInstance(): UserStoryService; private loadRulesData; getUserStories(ruleId: string): Promise; getUserStory(ruleId: string): Promise; getAllUserStories(): Promise; hasUserStories(ruleId: string): Promise; getRuleData(ruleId: string): { title: string; summary: string; description: string; severity: string; type: string; user_stories: string[]; wcag: Array<{ level: string; name: string; link: string; }>; act_rules?: Array<{ name: string; link: string; }>; supporting_links?: Array<{ name: string; link: string; }>; } | undefined; } //# sourceMappingURL=user-stories.d.ts.map