import { Meeting } from '../types/dyte-client'; declare const SOUNDS: { joined: string; left: string; message: string; }; export type Sound = keyof typeof SOUNDS; /** * Handles notification sounds in a meeting */ export default class DyteNotificationsAudio { private audio; private playing; private meeting; constructor(meeting: Meeting); play(sound: Sound, duration?: number): void; setDevice(id: string): Promise; } export {};