import { type DataViewReader } from "./data-view-reader.js"; export interface WindChill { /** *
Format: `sint8`
*Unit: `org.bluetooth.unit.thermodynamic_temperature.degree_celsius`
*Unit is in degrees Celsius with a resolution of 1 degree Celsius
*/ windChill: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.wind_chill.xml | Wind Chill} */ export declare class WindChillImpl implements WindChill { static readonly UUID_PREFIX = 10873; static readonly TYPE_NAME = "org.bluetooth.characteristic.wind_chill"; static readonly NAME = "Wind Chill"; /** Parse from a DataView into {@link WindChill}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): WindChillImpl; readonly windChill: number; constructor(windChill: WindChill); } /** Parse from a DataView into {@link WindChill}. */ export declare function windChillFromDataView(dataView: DataView | DataViewReader, indexStart?: number): WindChill; //# sourceMappingURL=wind-chill.d.ts.map