interface ParsedArgs { workspaceRoot?: string; projectKey?: string; epicKey?: string; storyKey?: string; taskKeys: string[]; statusFilter: string[]; baseRef?: string; dryRun: boolean; resumeJobId?: string; limit?: number; agentName?: string; agentStream?: boolean; rateAgents: boolean; createFollowupTasks: boolean; executionContextPolicy?: "best_effort" | "require_any" | "require_sds_or_openapi"; emptyDiffApprovalPolicy?: "ready_to_qa" | "complete"; json: boolean; } type ProjectKeyCandidate = { key: string; createdAt?: string | null; }; export declare const parseCodeReviewArgs: (argv: string[]) => ParsedArgs; export declare const pickCodeReviewProjectKey: (options: { requestedKey?: string; configuredKey?: string; existing: ProjectKeyCandidate[]; }) => { projectKey?: string; warnings: string[]; }; export declare class CodeReviewCommand { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=CodeReviewCommand.d.ts.map