import { type DataViewReader } from "./data-view-reader.js"; /**
Maximal Oxygen uptake of a user
*/ export interface Vo2Max { /** *Format: `uint8`
*Unit is in Milliliter per kilogram per minutes with a resolution of 1 .
*/ vo2Max: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.vo2_max.xml | Vo2 Max} */ export declare class Vo2MaxImpl implements Vo2Max { static readonly UUID_PREFIX = 10902; static readonly TYPE_NAME = "org.bluetooth.characteristic.vo2_max"; static readonly NAME = "VO2 Max"; /** Parse from a DataView into {@link Vo2Max}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): Vo2MaxImpl; readonly vo2Max: number; constructor(vo2Max: Vo2Max); } /** Parse from a DataView into {@link Vo2Max}. */ export declare function vo2MaxFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Vo2Max; //# sourceMappingURL=vo2-max.d.ts.map