import { type DataViewReader } from "./data-view-reader.js"; /**

Lower limit of the heart rate where the user enhances his anaerobic tolerance while exercising.

*/ export interface AnaerobicHeartRateLowerLimit { /** *

Format: `uint8`

*

Unit: `org.bluetooth.unit.period.beats_per_minute`

*

Unit is in beats per minute with a resolution of 1

*/ anaerobicHeartRateLowerLimit: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.anaerobic_heart_rate_lower_limit.xml | Anaerobic Heart Rate Lower Limit} */ export declare class AnaerobicHeartRateLowerLimitImpl implements AnaerobicHeartRateLowerLimit { static readonly UUID_PREFIX = 10881; static readonly TYPE_NAME = "org.bluetooth.characteristic.anaerobic_heart_rate_lower_limit"; static readonly NAME = "Anaerobic Heart Rate Lower Limit"; /** Parse from a DataView into {@link AnaerobicHeartRateLowerLimit}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): AnaerobicHeartRateLowerLimitImpl; readonly anaerobicHeartRateLowerLimit: number; constructor(anaerobicHeartRateLowerLimit: AnaerobicHeartRateLowerLimit); } /** Parse from a DataView into {@link AnaerobicHeartRateLowerLimit}. */ export declare function anaerobicHeartRateLowerLimitFromDataView(dataView: DataView | DataViewReader, indexStart?: number): AnaerobicHeartRateLowerLimit; //# sourceMappingURL=anaerobic-heart-rate-lower-limit.d.ts.map