import { HMSException } from '../../error/HMSException'; import { EventBus } from '../../events/EventBus'; export declare class AudioPluginsAnalytics { private eventBus; private readonly TAG; private readonly initTime; private readonly addedTimestamps; private readonly pluginAdded; private readonly pluginSampleRate; constructor(eventBus: EventBus); added(name: string, sampleRate: number): void; removed(name: string): void; failure(name: string, error: HMSException): void; initWithTime(name: string, initFn: () => Promise): Promise; private timeInMs; private clean; }