import { CharacteristicGetHandler } from 'homebridge';
import { AccessoryThisType } from '../VeSyncAccessory';
/**
 * TargetState characteristic handler for the Humidifier service.
 * This is a read-only characteristic that always returns HUMIDIFIER (1),
 * as this plugin only supports humidifier mode, not dehumidifier mode.
 *
 * Note: This is a static value and requires no device state lookup.
 */
declare const characteristic: {
    get: CharacteristicGetHandler;
} & AccessoryThisType;
export default characteristic;
//# sourceMappingURL=TargetState.d.ts.map