import { BluetoothRemoteGATTCharacteristic, Coord, Rgb } from "../types"; import { CharacteristicWrapper } from "./CharacteristicWrapper"; export declare class PixelApi extends CharacteristicWrapper { constructor(characteristic: BluetoothRemoteGATTCharacteristic); clear(): Promise; setAll(pixelMap: string[], color: Rgb | string, clearEmpty?: boolean): Promise; setDiff(diff: string[], color: Rgb | string): Promise; set(locations: Coord | Coord[], color: Rgb | string): Promise; private itemsIn; } export declare function hexToRgb(hex: string): Rgb;