/** * OpenTelemetry token metrics core module. * @task T4535 * @epic T4454 */ /** Get token tracking status. */ export declare function getOtelStatus(): Promise>; /** Get combined token usage summary. */ export declare function getOtelSummary(): Promise>; /** Get session-level token data. */ export declare function getOtelSessions(opts: { session?: string; task?: string; }): Promise>; /** Get spawn-level token data. */ export declare function getOtelSpawns(opts: { task?: string; epic?: string; }): Promise>; /** Get real token usage from Claude Code API. */ export declare function getRealTokenUsage(opts: { session?: string; since?: string; }): Promise>; /** Clear token tracking data with backup. */ export declare function clearOtelData(): Promise>; //# sourceMappingURL=index.d.ts.map