import { BaseTapoDevice, TapoCredentials, TapoApiRequest, TapoApiResponse, PlugDeviceInfo, PlugUsageInfo, FeatureNotSupportedError, DeviceCapabilityError, Result, DeviceMethodOptions } from '../../types'; /** * P100 Smart Plug - Basic plug without energy monitoring */ export declare class P100Plug extends BaseTapoDevice { private unifiedProtocol; private featureCache; private deviceModel?; private requestQueue; constructor(ip: string, credentials: TapoCredentials); private checkDeviceConnectivity; connect(): Promise; disconnect(): Promise; /** * Check if device is currently authenticated */ isAuthenticated(): boolean; getDeviceInfo(): Promise; /** * Check if the device supports energy monitoring features * P100 does not support energy monitoring */ hasEnergyMonitoring(): Promise; /** * Check if the device supports a specific feature */ supportsFeature(feature: string): Promise; turnOn(): Promise; turnOff(): Promise; toggle(): Promise; on(): Promise; off(): Promise; isOn(): Promise; getUsageInfo(options?: DeviceMethodOptions): Promise; /** * Get usage info using Result pattern for better error handling */ getUsageInfoResult(): Promise>; getCurrentPower(options?: DeviceMethodOptions): Promise; getTodayEnergy(options?: DeviceMethodOptions): Promise; getMonthEnergy(options?: DeviceMethodOptions): Promise; getTodayRuntime(options?: DeviceMethodOptions): Promise; getMonthRuntime(options?: DeviceMethodOptions): Promise; isOverheated(): Promise; getOnTime(): Promise; setDeviceInfo(params: Record): Promise; protected sendRequest(request: TapoApiRequest): Promise>; }