import { type DataViewReader } from "./data-view-reader.js"; /**
Second metabolic threshold
*/ export interface AnaerobicThreshold { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.period.beats_per_minute`
*The Unit is beats per minute with a resolution of 1
*/ anaerobicThreshold: number; } /** * Aerobic Threshold and Anaerobic Threshold together with the Sport Type for Aerobic and Anaerobic Thresholds describe the metabolic thresholds of the user. The Sport Type for Aerobic and Anaerobic Thresholds identifies how the measurement was performed. * @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.anaerobic_threshold.xml | Anaerobic Threshold} */ export declare class AnaerobicThresholdImpl implements AnaerobicThreshold { static readonly UUID_PREFIX = 10883; static readonly TYPE_NAME = "org.bluetooth.characteristic.anaerobic_threshold"; static readonly NAME = "Anaerobic Threshold"; /** Parse from a DataView into {@link AnaerobicThreshold}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): AnaerobicThresholdImpl; readonly anaerobicThreshold: number; constructor(anaerobicThreshold: AnaerobicThreshold); } /** Parse from a DataView into {@link AnaerobicThreshold}. */ export declare function anaerobicThresholdFromDataView(dataView: DataView | DataViewReader, indexStart?: number): AnaerobicThreshold; //# sourceMappingURL=anaerobic-threshold.d.ts.map