import { type CodeReviewProfile } from "./assets.js"; import type { CodeReviewRunOptions } from "./config.js"; export declare function buildCodeReviewOrchestratorPrompt(input: { input: CodeReviewRunOptions; profiles: readonly CodeReviewProfile[]; profile: string; promptTemplate: string; prDetails: Record; diff: string; priorActivity: Record; }): string; export declare function buildCodeReviewReviewerPrompt(input: { template: string; profile: string; prUrl: string; prDetails: unknown; }): string; export declare function buildCodeReviewProfileSynthesisPrompt(input: { template: string; commentsPath: string; profilePath: string; partial: boolean; }): string;