import { type DataViewReader } from "./data-view-reader.js"; /**
The Boot Keyboard 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 keyboard.
*/ export interface BootKeyboardInputReport { /**Format: `uint8`
*/ bootKeyboardInputReportValue: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.boot_keyboard_input_report.xml | Boot Keyboard Input Report} */ export declare class BootKeyboardInputReportImpl implements BootKeyboardInputReport { static readonly UUID_PREFIX = 10786; static readonly TYPE_NAME = "org.bluetooth.characteristic.boot_keyboard_input_report"; static readonly NAME = "Boot Keyboard Input Report"; /** Parse from a DataView into {@link BootKeyboardInputReport}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BootKeyboardInputReportImpl; readonly bootKeyboardInputReportValue: number; constructor(bootKeyboardInputReport: BootKeyboardInputReport); } /** Parse from a DataView into {@link BootKeyboardInputReport}. */ export declare function bootKeyboardInputReportFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BootKeyboardInputReport; //# sourceMappingURL=boot-keyboard-input-report.d.ts.map