export class DeviceSettings { constructor( defaultSettings: Record, onSettingsUpdate?: (name: string, newValue: any, oldValue: any) => Promise, ); public update(newSettings: Record): Promise; public getSettings(): Record; }