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

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

*/ export interface BootKeyboardOutputReport { /**

Format: `uint8`

*/ bootKeyboardOutputReportValue: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.boot_keyboard_output_report.xml | Boot Keyboard Output Report} */ export declare class BootKeyboardOutputReportImpl implements BootKeyboardOutputReport { static readonly UUID_PREFIX = 10802; static readonly TYPE_NAME = "org.bluetooth.characteristic.boot_keyboard_output_report"; static readonly NAME = "Boot Keyboard Output Report"; /** Parse from a DataView into {@link BootKeyboardOutputReport}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BootKeyboardOutputReportImpl; readonly bootKeyboardOutputReportValue: number; constructor(bootKeyboardOutputReport: BootKeyboardOutputReport); } /** Parse from a DataView into {@link BootKeyboardOutputReport}. */ export declare function bootKeyboardOutputReportFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BootKeyboardOutputReport; //# sourceMappingURL=boot-keyboard-output-report.d.ts.map