import { PlatformAccessory } from 'homebridge';
import { DaikinApi } from './daikinapi.js';
import { AccessoryContext } from './types.js';
import { DaikinOnePlusPlatform } from './platform.js';
/**
 * Away Mode Switch
 * A switch accessory to show and toggle the Away Mode state
 */
export declare class DaikinOnePlusAwaySwitch {
    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=platformAwaySwitch.d.ts.map