import { type DataViewReader } from "./data-view-reader.js"; /**
Lowest Heart Rate a user can reach
*/ export interface RestingHeartRate { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ restingHeartRate: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.resting_heart_rate.xml | Resting Heart Rate} */ export declare class RestingHeartRateImpl implements RestingHeartRate { static readonly UUID_PREFIX = 10898; static readonly TYPE_NAME = "org.bluetooth.characteristic.resting_heart_rate"; static readonly NAME = "Resting Heart Rate"; /** Parse from a DataView into {@link RestingHeartRate}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): RestingHeartRateImpl; readonly restingHeartRate: number; constructor(restingHeartRate: RestingHeartRate); } /** Parse from a DataView into {@link RestingHeartRate}. */ export declare function restingHeartRateFromDataView(dataView: DataView | DataViewReader, indexStart?: number): RestingHeartRate; //# sourceMappingURL=resting-heart-rate.d.ts.map