import { BaseWebhookCharacteristic } from "./base-webhook-characteristic"; import { Characteristic } from 'homebridge'; import { BooleanWebhook } from "../accessory-config"; export declare class BooleanWebhookCharacteristic extends BaseWebhookCharacteristic { readonly enableURL: string; readonly disableURL?: string; protected transformStatusResponse(raw: any): boolean; constructor(webhook: BooleanWebhook, characteristic: Characteristic); setOn(on: boolean): Promise; } //# sourceMappingURL=boolean-webhook-characteristic.d.ts.map