/** Atomically claim a session for review. Returns true only for the winner. */ export declare function claimSession(cwd: string, uuid: string): boolean; /** Release a claim so the session can be retried — used on no-write failure * paths (model error, unparseable output) where nothing was persisted. */ export declare function releaseClaim(cwd: string, uuid: string): void;