import { type DataViewReader } from "./data-view-reader.js"; export interface HeartRateControlPoint { /** *
Format: `8bit`
* | Key | Description | * | --- | ---------------------------------------------------------------------------------------------------------------------- | * | 1 | Reset Energy Expended: resets the value of the Energy Expended field in the Heart Rate Measurement characteristic to 0 | * *Reserved: 0
*Reserved for future use: 2 to 255
*/ heartRateControlPoint: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.heart_rate_control_point.xml | Heart Rate Control Point} */ export declare class HeartRateControlPointImpl implements HeartRateControlPoint { static readonly UUID_PREFIX = 10809; static readonly TYPE_NAME = "org.bluetooth.characteristic.heart_rate_control_point"; static readonly NAME = "Heart Rate Control Point"; /** Parse from a DataView into {@link HeartRateControlPoint}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): HeartRateControlPointImpl; readonly heartRateControlPoint: number; constructor(heartRateControlPoint: HeartRateControlPoint); } /** Parse from a DataView into {@link HeartRateControlPoint}. */ export declare function heartRateControlPointFromDataView(dataView: DataView | DataViewReader, indexStart?: number): HeartRateControlPoint; //# sourceMappingURL=heart-rate-control-point.d.ts.map