/** * Prompt templates for each generation stage. * These are used by the stage functions to construct LLM requests. */ export declare const PROMPTS: { stage1_survey: string; stage2_entities: string; stage3_services: string; stage4_api: string; stage5_architecture: string; stage6_adr: string; stage3_subspec_system: string; stage3_subspec: (orchestratorName: string, orchestratorPurpose: string, callees: Array<{ name: string; signature?: string; docstring?: string; subcallees: string[]; }>) => string; }; //# sourceMappingURL=prompts.d.ts.map