import { type DataViewReader } from "./data-view-reader.js"; /**
Data structure containing the limits between the heart rate zones for the 3-zone heart rate definition (Hard, Moderate and Light).
*/ export interface ThreeZoneHeartRateLimits { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ threeZoneHeartRateLimitsLightFatBurnModerateAerobicLimit: number; /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*Unit is in beats per minute with a resolution of 1
*/ threeZoneHeartRateLimitsModerateAerobicHardAnaerobicLimit: 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.three_zone_heart_rate_limits.xml | Three Zone Heart Rate Limits} */ export declare class ThreeZoneHeartRateLimitsImpl implements ThreeZoneHeartRateLimits { static readonly UUID_PREFIX = 10900; static readonly TYPE_NAME = "org.bluetooth.characteristic.three_zone_heart_rate_limits"; static readonly NAME = "Three Zone Heart Rate Limits"; /** Parse from a DataView into {@link ThreeZoneHeartRateLimits}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): ThreeZoneHeartRateLimitsImpl; readonly threeZoneHeartRateLimitsLightFatBurnModerateAerobicLimit: number; readonly threeZoneHeartRateLimitsModerateAerobicHardAnaerobicLimit: number; constructor(threeZoneHeartRateLimits: ThreeZoneHeartRateLimits); } /** Parse from a DataView into {@link ThreeZoneHeartRateLimits}. */ export declare function threeZoneHeartRateLimitsFromDataView(dataView: DataView | DataViewReader, indexStart?: number): ThreeZoneHeartRateLimits; //# sourceMappingURL=three-zone-heart-rate-limits.d.ts.map