/** * Reads delegation data from delegations.json (legacy persistence format). * * REQ-C6-02: Implements DelegationStatusReader for the old persistence format. * Validates entries with Zod schemas before constructing Delegation objects. * * @module tools/delegation/readers/legacy-reader */ import type { Delegation } from "../../../coordination/delegation/types.js"; import type { DelegationStatusReader } from "./types.js"; export declare class LegacyPersistenceStatusReader implements DelegationStatusReader { readChildren(parentSessionId: string, projectRoot: string): Promise; readDelegation(delegationId: string, projectRoot: string): Promise; private readDelegationsFile; } //# sourceMappingURL=legacy-reader.d.ts.map