import { HttpException, HttpStatus } from '@nestjs/common'; export declare class DevicesWledException extends HttpException { constructor(message: string, status?: HttpStatus); } export declare class WledConnectionException extends DevicesWledException { constructor(host: string, reason?: string); } export declare class WledCommandException extends DevicesWledException { constructor(deviceId: string, command: string, reason?: string); } export declare class WledDeviceNotFoundException extends DevicesWledException { constructor(identifier: string); }