import { type CodexSegment, type TokenTotals, type TranscriptFacts } from './shared.mts'; export declare function codexChildren(lines: string[], ownerPath?: string): Array<{ threadId: string; agentPath: string; }>; export declare function codexIdentity(lines: string[]): { threadId?: string; agentPath: string; }; export declare function computeCodex(lines: string[], subagents?: CodexSegment[], baseline?: TokenTotals): TranscriptFacts;