import { type DataViewReader } from "./data-view-reader.js"; /**

The Boot Mouse Input Report characteristic is used to transfer fixed format and length Input Report data between a HID Host operating in Boot Protocol Mode and a HID Service corresponding to a boot mouse.

*/ export interface BootMouseInputReport { /**

Format: `uint8`

*/ bootMouseInputReportValue: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.boot_mouse_input_report.xml | Boot Mouse Input Report} */ export declare class BootMouseInputReportImpl implements BootMouseInputReport { static readonly UUID_PREFIX = 10803; static readonly TYPE_NAME = "org.bluetooth.characteristic.boot_mouse_input_report"; static readonly NAME = "Boot Mouse Input Report"; /** Parse from a DataView into {@link BootMouseInputReport}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BootMouseInputReportImpl; readonly bootMouseInputReportValue: number; constructor(bootMouseInputReport: BootMouseInputReport); } /** Parse from a DataView into {@link BootMouseInputReport}. */ export declare function bootMouseInputReportFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BootMouseInputReport; //# sourceMappingURL=boot-mouse-input-report.d.ts.map