/** * [INPUT]: locale key * [OUTPUT]: prompt templates and injection labels in the selected locale * [POS]: i18n layer — all LLM prompts and user-facing strings go through here */ export interface PromptSet { extractionSystem: string; workExtractionSystem: string; consolidationSystem: string; reconsolidationSystem: string; sectionLessons: string; sectionKnowledge: string; sectionEpisodes: string; sectionPreferences: string; sectionWork: string; sectionPatterns: string; sectionStruggles: string; injectionHeader: string; memoryBehavior: string; insightsRecommendationSystem: string; insightsTitle: string; insightsSectionPatterns: string; insightsSectionStruggles: string; insightsSectionLessons: string; insightsSectionRecommendations: string; insightsNoData: string; insightsUnresolved: string; insightsResolved: string; insightsGeneratedAt: string; fullInsightsSystemPrompt: string; fullInsightsTitle: string; fullInsightsSubtitleSessions: string; fullInsightsAtAGlance: string; fullInsightsWorkOn: string; fullInsightsWins: string; fullInsightsFrictions: string; fullInsightsRecommendations: string; fullInsightsFeaturesToTry: string; fullInsightsUsagePatterns: string; fullInsightsOnTheHorizon: string; fullInsightsChartTools: string; fullInsightsChartLanguages: string; fullInsightsChartErrors: string; fullInsightsEmpty: string; fullInsightsCopy: string; fullInsightsCopied: string; fullInsightsGeneratedBy: string; } export declare const PROMPTS: Record;