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

Format: `sint16`

*

Unit: `org.bluetooth.unit.thermodynamic_temperature.degree_celsius`

*

Unit is in degrees Celsius with a resolution of 0.01 degrees Celsius

*/ temperature: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.temperature.xml | Temperature} */ export declare class TemperatureImpl implements Temperature { static readonly UUID_PREFIX = 10862; static readonly TYPE_NAME = "org.bluetooth.characteristic.temperature"; static readonly NAME = "Temperature"; /** Parse from a DataView into {@link Temperature}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TemperatureImpl; readonly temperature: number; constructor(temperature: Temperature); } /** Parse from a DataView into {@link Temperature}. */ export declare function temperatureFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Temperature; //# sourceMappingURL=temperature.d.ts.map