import { PluginProvidedUiItemDescriptor } from '../base'; import { PluginIconType } from '../common/icon'; /** * Audio Settings Dropdown Item - The general Audio settings extensible area * * @remarks * To make this dropdown appear, the user needs to enter with audio, either listen only * or microphone. This will make a small downward arrow appear (chevron). */ export interface AudioSettingsDropdownInterface extends PluginProvidedUiItemDescriptor { } export interface AudioSettingsDropdownOptionProps { id?: string; label: string; icon: PluginIconType; dataTest?: string; onClick: () => void; }