import { Device } from "./device.js"; import { IDeviceInterface } from "../interfaces.js"; import * as Consts from "../consts.js"; /** * @class HubLED * @extends Device */ export declare class HubLED extends Device { constructor(hub: IDeviceInterface, portId: number); /** * Set the color of the LED on the Hub via a color value. * @param {Color} color * @returns {Promise} Resolved upon completion of command. */ setColor(color: number | boolean): Promise | undefined; /** * Set the color of the LED on the Hub via RGB values. * @param {number} red * @param {number} green * @param {number} blue * @returns {Promise} Resolved upon completion of command. */ setRGB(red: number, green: number, blue: number): Promise | undefined; } export declare enum Mode { COLOR = 0, RGB = 1 } //# sourceMappingURL=hubled.d.ts.map