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

Only a single instance of this characteristic exists as part of a HID Service.

*/ export interface ReportMap { /**

Format: `uint8`

*/ reportMapValue: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.report_map.xml | Report Map} */ export declare class ReportMapImpl implements ReportMap { static readonly UUID_PREFIX = 10827; static readonly TYPE_NAME = "org.bluetooth.characteristic.report_map"; static readonly NAME = "Report Map"; /** Parse from a DataView into {@link ReportMap}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): ReportMapImpl; readonly reportMapValue: number; constructor(reportMap: ReportMap); } /** Parse from a DataView into {@link ReportMap}. */ export declare function reportMapFromDataView(dataView: DataView | DataViewReader, indexStart?: number): ReportMap; //# sourceMappingURL=report-map.d.ts.map