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