import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig } from 'homebridge'; import { Device } from './models/sonos-types'; /** * HomebridgePlatform * This class is the main constructor for your plugin, this is where you should * parse the user config and discover/register accessories with Homebridge. */ export declare class SonosPlatform implements DynamicPlatformPlugin { readonly log: Logger; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof import("homebridge").Service; readonly Characteristic: typeof import("homebridge").Characteristic; readonly accessories: PlatformAccessory[]; private foundDevices; private coordinators; private expressDetails; private expressAppPort; constructor(log: Logger, config: PlatformConfig, api: API); /** * This function is invoked when homebridge restores cached accessories from disk at startup. * It should be used to setup event handlers for characteristics and update respective values. */ configureAccessory(accessory: PlatformAccessory): void; discoverDevices(): Promise; registerDiscoveredDevices(device: Device): Promise; removeDevicesNotDiscovered(): void; private setupExpressApp; private updateInputVolumeLevels; } //# sourceMappingURL=platform.d.ts.map