export {}; import { PresenceRainbow } from "./PresenceRainbow"; /** * @class * @name Settings * @public * @description * This class represents a Settings.
* Settings contains several informations stored and shared by application clients.
*/ declare class Settings { presence: PresenceRainbow; status: string; displayNameOrderFirstNameFirst: any; activeAlarm: any; activeNotif: any; constructor(); } export { Settings };