import { TelemetryOptions, TelemetryEvent } from './types'; export declare class TelemetryManager { private options; private performanceMarks; constructor(options?: TelemetryOptions); trackEvent(type: TelemetryEvent['type'], data?: Record): void; startPerformanceTracking(label: string): void; endPerformanceTracking(label: string, additionalData?: Record): number | null; trackError(error: Error | string, context?: string): void; } //# sourceMappingURL=telemetry.d.ts.map