import { Device } from "./device.js"; import { IDeviceInterface } from "../interfaces.js"; import * as Consts from "../consts.js"; /** * @class Technic3x3ColorLightMatrix * @extends Device */ export declare class Technic3x3ColorLightMatrix extends Device { constructor(hub: IDeviceInterface, portId: number); /** * Set the LED matrix, one color per LED * @param {Color[] | Color} colors Array of 9 colors, 9 Color objects, or a single color * @returns {Promise} Resolved upon completion of command. */ setMatrix(colors: number[] | number): Promise | undefined; } export declare enum Mode { LEV_0 = 0, COL_0 = 1, PIX_0 = 2, TRANS = 3 } //# sourceMappingURL=technic3x3colorlightmatrix.d.ts.map