import type { LanguageInfo, FrameworkInfo, SdkInfo, EnvironmentInfo, Issue } from './types.js'; export interface AnalysisContext { installDir: string; language: LanguageInfo; framework: FrameworkInfo; sdk: SdkInfo; environment: EnvironmentInfo; existingIssues: Issue[]; } export declare function buildDoctorPrompt(context: AnalysisContext): Promise;