import { PlatformAccessory } from 'homebridge';
import { DaikinApi } from './daikinapi.js';
import { AccessoryContext } from './types.js';
import { DaikinOnePlusPlatform } from './platform.js';
/**
 * Platform Accessory
 * An instance of this class is created for each accessory your platform registers
 * Each accessory may expose multiple services of different service types.
 */
export declare class DaikinOnePlusScheduleSwitch {
    private readonly platform;
    private readonly accessory;
    private readonly deviceId;
    private readonly daikinApi;
    private service;
    constructor(platform: DaikinOnePlusPlatform, accessory: PlatformAccessory<AccessoryContext>, deviceId: string, daikinApi: DaikinApi);
    private updateValues;
    /**
     * Handle requests to get the current value of the "On" characteristic
     */
    private handleCurrentStateGet;
    /**
     * Handle requests to set the "On" characteristic
     */
    private handleCurrentStateSet;
}
//# sourceMappingURL=platformScheduleSwitch.d.ts.map