import type { JudgeReport } from "./loop.js"; export declare function plannerPrompt(task: string, repoContext?: string, trustedRevisionFeedback?: string): string; export declare function replanPrompt(task: string, previousPlan: string, diffSummary: string, judgeReports: JudgeReport[] | string, trustedRevisionFeedback?: string): string; export declare function coderPrompt(plan: string, judgeFeedback?: string): string; export declare function judgePrompt(task: string, plan: string, testCommand?: string): string;