import type { AudioStreamStats, VideoStreamStats, ScoresCalculatorConfig, DeviceType } from './types'; export declare class ScoresCalculator { private readonly config; constructor(config?: ScoresCalculatorConfig); calculateAudioMOS(stats: Partial): number; calculateVideoMOS(stats: Partial): number; calculateAVCompositeMOS(Qa: number, Qv: number, deviceType?: DeviceType): number; private mergeConfig; private normalizeAudioStats; private normalizeVideoStats; }