/** * ## RGB * This module controls and customizes the RGB lighting and display elements of the kiosk for an enhanced aesthetic appeal. * * @packageDocumentation */ import { RgbState } from './rgb-state.enum'; export declare class Rgb { changeRgbColor(index: number, color: number, state: RgbState): Promise; changeMultipleRgbColor(rgbInfos: { index: number; color: number; state: RgbState; }[]): Promise; changeRgbByState(state: RgbState, color?: string): Promise; } export * from './rgb-state.enum';