import { type DataViewReader } from "./data-view-reader.js"; export interface HeatIndex { /** *
Format: `sint8`
*Unit: `org.bluetooth.unit.thermodynamic_temperature.degree_celsius`
*Unit is in degrees celsius with a resolution of 1 degree Celsius
*/ heatIndex: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.heat_index.xml | Heat Index} */ export declare class HeatIndexImpl implements HeatIndex { static readonly UUID_PREFIX = 10874; static readonly TYPE_NAME = "org.bluetooth.characteristic.heat_index"; static readonly NAME = "Heat Index"; /** Parse from a DataView into {@link HeatIndex}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): HeatIndexImpl; readonly heatIndex: number; constructor(heatIndex: HeatIndex); } /** Parse from a DataView into {@link HeatIndex}. */ export declare function heatIndexFromDataView(dataView: DataView | DataViewReader, indexStart?: number): HeatIndex; //# sourceMappingURL=heat-index.d.ts.map