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

Lower limit of the heart rate where the user enhances his endurance while exercising

*/ export interface AerobicHeartRateLowerLimit { /** *

Format: `uint8`

*

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

*

Unit is in beats per minute with a resolution of 1

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