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

Upper limit of the heart rate where the user maximizes the fat burn while exersizing

*/ export interface FatBurnHeartRateUpperLimit { /** *

Format: `uint8`

*

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

*

Unit is in beats per minute with a resolution of 1

*/ fatBurnHeartRateUpperLimit: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.fat_burn_heart_rate_upper_limit.xml | Fat Burn Heart Rate Upper Limit} */ export declare class FatBurnHeartRateUpperLimitImpl implements FatBurnHeartRateUpperLimit { static readonly UUID_PREFIX = 10889; static readonly TYPE_NAME = "org.bluetooth.characteristic.fat_burn_heart_rate_upper_limit"; static readonly NAME = "Fat Burn Heart Rate Upper Limit"; /** Parse from a DataView into {@link FatBurnHeartRateUpperLimit}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): FatBurnHeartRateUpperLimitImpl; readonly fatBurnHeartRateUpperLimit: number; constructor(fatBurnHeartRateUpperLimit: FatBurnHeartRateUpperLimit); } /** Parse from a DataView into {@link FatBurnHeartRateUpperLimit}. */ export declare function fatBurnHeartRateUpperLimitFromDataView(dataView: DataView | DataViewReader, indexStart?: number): FatBurnHeartRateUpperLimit; //# sourceMappingURL=fat-burn-heart-rate-upper-limit.d.ts.map