import { AccessoryPlugin, Logging, API, Service, AccessoryConfig } from 'homebridge'; import Cleanmate from 'cleanmate'; import { ServiceBase } from './services/serviceBase'; declare class CleanmatePlugin implements AccessoryPlugin { cleanmateService: Cleanmate; services: ServiceBase[]; private config; constructor(logger: Logging, config: AccessoryConfig, api: API); identify(): void; getServices(): Service[]; } export default CleanmatePlugin; //# sourceMappingURL=cleanmatePlugin.d.ts.map