export class VideoSDKNoiseSuppressor { /** * Gets the singleton instance of the {@link VideoSDKNoiseSuppressor} class. * Applies noise suppression to the provided audio stream. * * @param {MediaStream} stream - The WebRTC audio MediaStream. * @returns {Promise} - The transformed media stream with noise suppression applied. */ getNoiseSuppressedAudioStream(stream: MediaStream): Promise; }