import { EventEmitter } from '../../stencil-public-runtime'; import { Meeting } from '../../types/dyte-client'; import { IconPack } from '../../lib/icons'; import { DyteI18n } from '../../lib/lang'; import { Size, States } from '../../types/props'; /** * A component which lets to manage your audio devices and audio preferences. * * Emits `dyteStateUpdate` event with data for muting notification sounds: * ```ts * { * prefs: { * muteNotificationSounds: boolean * } * } * ``` */ export declare class DyteSettingsAudio { /** Meeting object */ meeting: Meeting; /** States object */ states: States; /** Size */ size: Size; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; /** Event updated state */ stateUpdate: EventEmitter; render(): any; }