import type { Category } from "./types.js"; export declare function identifySystemPrompt(context?: string): string; export declare function identifyUserPrompt(chunkText: string, startPage: number, endPage: number): string; export declare function classifySystemPrompt(categories: Category[], context?: string): string; export declare function classifyUserPrompt(requirements: Array<{ id_suggestion: string; title: string; summary: string; raw_text: string; }>, categories: Category[]): string; export declare function generateSystemPrompt(context?: string): string; export declare function generateUserPrompt(req: { id: string; title: string; summary: string; raw_text: string; page_range: string; section_label: string; type: string; }): string; export declare function gherkinSystemPrompt(context?: string): string; export declare function gherkinUserPrompt(req: { id: string; title: string; summary: string; category: string; acceptance_criteria: string[]; }): string; //# sourceMappingURL=prompts.d.ts.map