export type TraceEvent = { id: string; type: 'agent' | 'tool' | 'job'; name: string; status: 'start' | 'end' | 'error'; timestamp: string; data?: any; }; export declare class Telemetry { private static events; static record(event: Omit): void; static getHistory(): TraceEvent[]; static clear(): void; } //# sourceMappingURL=telemetry.d.ts.map