import { type DataViewReader } from "./data-view-reader.js"; export interface BodySensorLocation { /** *
Format: `8bit`
* | Key | Description | * | --- | ----------- | * | 0 | Other | * | 1 | Chest | * | 2 | Wrist | * | 3 | Finger | * | 4 | Hand | * | 5 | Ear Lobe | * | 6 | Foot | * *Reserved for future use: 7 to 255
*/ bodySensorLocation: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.body_sensor_location.xml | Body Sensor Location} */ export declare class BodySensorLocationImpl implements BodySensorLocation { static readonly UUID_PREFIX = 10808; static readonly TYPE_NAME = "org.bluetooth.characteristic.body_sensor_location"; static readonly NAME = "Body Sensor Location"; /** Parse from a DataView into {@link BodySensorLocation}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BodySensorLocationImpl; readonly bodySensorLocation: number; constructor(bodySensorLocation: BodySensorLocation); } /** Parse from a DataView into {@link BodySensorLocation}. */ export declare function bodySensorLocationFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BodySensorLocation; //# sourceMappingURL=body-sensor-location.d.ts.map