/** * Tapo L520 Smart Bulb - Tunable white light with color temperature */ import { BaseBulb } from './base-bulb'; import { TapoCredentials } from '../../types'; export declare class L520Bulb extends BaseBulb { constructor(ip: string, credentials: TapoCredentials); /** * Get device model */ protected getDeviceModel(): string; }