import type { PiLikeContext } from "../pi-context.js"; import { runReviewService } from "../review/service.js"; import type { ReviewRoleExecutor } from "../workflows/contracts.js"; export declare function chorusReviewTool(ctx: PiLikeContext, rawArgs: unknown, onUpdate?: (update: unknown) => void, overrides?: { executor?: ReviewRoleExecutor; runReviewServiceImpl?: typeof runReviewService; }): Promise;