import type { ReviewRecommendation, ReviewType } from '../core/types.js'; export interface ReviewerAgentContext { sprintNumber?: number; theme?: string; filePatterns?: string[]; artifacts?: string[]; hazards?: string[]; } export interface ReviewerAgentSpec { id: string; name: string; lane: ReviewType; priority: ReviewRecommendation['priority']; scope: string[]; focus: string[]; evidence: string[]; prompt: string; } export declare function buildReviewerAgentSpecs(recommendations: ReviewRecommendation[], context?: ReviewerAgentContext): ReviewerAgentSpec[]; export declare function formatReviewerAgentGuidance(specs: ReviewerAgentSpec[]): string; export declare function formatReviewerAgentSummary(specs: ReviewerAgentSpec[]): string; //# sourceMappingURL=reviewer-agents.d.ts.map