import { type ActiveRound } from "./active-round-registry.js"; import { type InterruptedSubagent } from "./subagent-monitor.js"; export interface PreparedRoundInterrupt { round: ActiveRound; subagents: InterruptedSubagent[]; } export declare function prepareRoundInterrupt(accountId: string, groupId: string): PreparedRoundInterrupt | undefined; export declare function finalizeRoundInterrupt(prepared: PreparedRoundInterrupt): Promise; //# sourceMappingURL=interrupt-round.d.ts.map