/** * @module Notifications */ /** * Sound options for a notification */ export interface NotificationSoundOptions { /** * Determines the sound that will be played when a notification is received. * * @default 'default' plays the default notification sound. */ mode: 'default' | 'silent'; }