import { BluetoothRemoteGATTCharacteristic } from "../types"; export declare class CharacteristicWrapper { protected _characteristic: BluetoothRemoteGATTCharacteristic; constructor(characteristic: BluetoothRemoteGATTCharacteristic); protected sendRaw(data: number[]): Promise; protected sendBytes(data: Uint8Array): Promise; }