import type { ResolveOtherHumanThreads } from "../config/load.mts"; import type { AgentThread, ReviewThread } from "../types.mts"; type OutdatableThread = AgentThread | ReviewThread; /** Other-human threads are resolved only when the iterate enum allows it. */ export declare function shouldResolveOtherHumanThread(thread: OutdatableThread, policy: ResolveOtherHumanThreads): boolean; export {};