import { type DataViewReader } from "./data-view-reader.js"; /**
The Supported Heart Rate Range characteristic is used to send the supported Heart Rate range as well as the minimum Heart Rate increment supported by the Server.
*/ export interface SupportedHeartRateRange { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Beats per minute with a resolution of 1
*/ maximumHeartRate: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Beats per minute with a resolution of 1
*/ minimumHeartRate: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Beats per minute with a resolution of 1
*/ minimumIncrement: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.supported_heart_rate_range.xml | Supported Heart Rate Range} */ export declare class SupportedHeartRateRangeImpl implements SupportedHeartRateRange { static readonly UUID_PREFIX = 10967; static readonly TYPE_NAME = "org.bluetooth.characteristic.supported_heart_rate_range"; static readonly NAME = "Supported Heart Rate Range"; /** Parse from a DataView into {@link SupportedHeartRateRange}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): SupportedHeartRateRangeImpl; readonly maximumHeartRate: number; readonly minimumHeartRate: number; readonly minimumIncrement: number; constructor(supportedHeartRateRange: SupportedHeartRateRange); } /** Parse from a DataView into {@link SupportedHeartRateRange}. */ export declare function supportedHeartRateRangeFromDataView(dataView: DataView | DataViewReader, indexStart?: number): SupportedHeartRateRange; //# sourceMappingURL=supported-heart-rate-range.d.ts.map