import { type DataViewReader } from "./data-view-reader.js"; /**
Data structure containing the limits between the heart rate zones for the 5-zone heart rate definition (Maximum, Hard, Moderate, Light and Very Light).
*/ export interface FiveZoneHeartRateLimits { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ hardLimit: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ hardMaximumLimit: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ lightLightLimit: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ lightModerateLimit: number; } /** * The fields in the above table are in the order of LSO to MSO. Where LSO = Least Significant Octet and MSO = Most Significant Octet. * @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.five_zone_heart_rate_limits.xml | Five Zone Heart Rate Limits} */ export declare class FiveZoneHeartRateLimitsImpl implements FiveZoneHeartRateLimits { static readonly UUID_PREFIX = 10891; static readonly TYPE_NAME = "org.bluetooth.characteristic.five_zone_heart_rate_limits"; static readonly NAME = "Five Zone Heart Rate Limits"; /** Parse from a DataView into {@link FiveZoneHeartRateLimits}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): FiveZoneHeartRateLimitsImpl; readonly hardLimit: number; readonly hardMaximumLimit: number; readonly lightLightLimit: number; readonly lightModerateLimit: number; constructor(fiveZoneHeartRateLimits: FiveZoneHeartRateLimits); } /** Parse from a DataView into {@link FiveZoneHeartRateLimits}. */ export declare function fiveZoneHeartRateLimitsFromDataView(dataView: DataView | DataViewReader, indexStart?: number): FiveZoneHeartRateLimits; //# sourceMappingURL=five-zone-heart-rate-limits.d.ts.map