import type { ProcessOptions } from "../types.js"; import type { HistoryRepo } from "../storage/history-repo.js"; import type { Rewriter } from "./rewriter.js"; import type { TemplateService } from "./template-service.js"; export declare class Orchestrator { private historyRepo; private rewriter; private templateService; constructor(historyRepo: HistoryRepo, rewriter: Rewriter, templateService: TemplateService); processPrompt(options: ProcessOptions): Promise<{ improved: string; }>; }