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