import { type ReviewCooldownStatus } from "../operations/review-cooldown-status.js"; import type { ProcessRunner } from "../ports/process-runner.js"; import type { Writer } from "./peer-command.js"; export interface RunReviewCooldownOptions { readonly cwd: string; readonly json: boolean; readonly stdout?: Writer | undefined; readonly pr?: string | undefined; readonly commentsFile?: string | undefined; readonly now?: string | undefined; readonly processRunner?: ProcessRunner | undefined; } export declare function renderReviewCooldown(status: ReviewCooldownStatus): string; export declare function runReviewCooldown(options: RunReviewCooldownOptions): void; //# sourceMappingURL=review-cooldown.d.ts.map