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

Mapping information in the form of a Report ID and Report Type which maps the current parent characteristic to the Report ID(s) and Report Type (s) defined within the Report Map characteristic.

*/ export interface ReportReference { /** *

Format: `uint8`

*

Minimum: 0

*

Maximum: 255

*/ reportID: number; /** *

Format: `uint8`

*

Minimum: 1

*

Maximum: 3

* | Key | Description | * | --- | -------------- | * | 1 | Input Report | * | 2 | Output report | * | 3 | Feature Report | * *

Reserved for future use: 4 to 255

*/ reportType: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.descriptor.report_reference.xml | Report Reference} */ export declare class ReportReferenceImpl implements ReportReference { static readonly UUID_PREFIX = 10504; static readonly TYPE_NAME = "org.bluetooth.descriptor.report_reference"; static readonly NAME = "Report Reference"; /** Parse from a DataView into {@link ReportReference}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): ReportReferenceImpl; readonly reportID: number; readonly reportType: number; constructor(reportReference: ReportReference); } /** Parse from a DataView into {@link ReportReference}. */ export declare function reportReferenceFromDataView(dataView: DataView | DataViewReader, indexStart?: number): ReportReference; //# sourceMappingURL=report-reference.d.ts.map