import { type DataViewReader } from "./data-view-reader.js"; /** *
The Temperature Type characteristic is an enumeration that indicates where the temperature was measured.
*These Temperature Type values correspond to the Temperature Type descriptions used in ISO/IEEE 11073-10408-2008.
*/ export interface TemperatureType { /** *Format: `8bit`
* | Key | Description | * | --- | ----------------------- | * | 1 | Armpit | * | 2 | Body (general) | * | 3 | Ear (usually ear lobe) | * | 4 | Finger | * | 5 | Gastro-intestinal Tract | * | 6 | Mouth | * | 7 | Rectum | * | 8 | Toe | * | 9 | Tympanum (ear drum) | * *Reserved for future use: 0 to -1
*/ temperatureTextDescription: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.temperature_type.xml | Temperature Type} */ export declare class TemperatureTypeImpl implements TemperatureType { static readonly UUID_PREFIX = 10781; static readonly TYPE_NAME = "org.bluetooth.characteristic.temperature_type"; static readonly NAME = "Temperature Type"; /** Parse from a DataView into {@link TemperatureType}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TemperatureTypeImpl; readonly temperatureTextDescription: number; constructor(temperatureType: TemperatureType); } /** Parse from a DataView into {@link TemperatureType}. */ export declare function temperatureTypeFromDataView(dataView: DataView | DataViewReader, indexStart?: number): TemperatureType; //# sourceMappingURL=temperature-type.d.ts.map