import { HomebridgeAccessory, TuyaWebPlatform } from "../platform"; import { Characteristic, GeneralCharacteristic } from "./characteristics"; import { ColorAccessory } from "./ColorAccessory"; import { TuyaDevice } from "../api/response"; export declare class LightAccessory extends ColorAccessory { constructor(platform: TuyaWebPlatform, homebridgeAccessory: HomebridgeAccessory | undefined, deviceConfig: TuyaDevice); get accessorySupportedCharacteristics(): Characteristic[]; get requiredCharacteristics(): Characteristic[]; get deviceSupportedCharacteristics(): GeneralCharacteristic[]; } //# sourceMappingURL=LightAccessory.d.ts.map