import { PlatformConfig } from "homebridge"; import { TuyaPlatform } from "./api/platform"; import { TuyaDeviceType } from "./api/response"; export declare type TuyaDeviceDefaults = { id: string; device_type: TuyaDeviceType; min_temper: string | number; max_temper: string | number; current_temperature_factor: string | number; target_temperature_factor: string | number; dimmer_characteristics: "Brightness"[]; fan_characteristics: "Speed"[]; light_characteristics: ("Brightness" | "Color" | "Color Temperature")[]; cover_characteristics: "Stop"[]; }; declare type Config = { options?: { username?: string; password?: string; countryCode?: string; platform?: TuyaPlatform; pollingInterval?: number; }; defaults?: Partial[]; scenes?: boolean | string[]; }; export declare type TuyaWebConfig = PlatformConfig & Config; export {}; //# sourceMappingURL=config.d.ts.map