import { type DataViewReader } from "./data-view-reader.js"; export interface Rainfall { /** *
Format: `uint16`
*Unit: `org.bluetooth.unit.length.meter`
*Unit is in meters with a resolution of 1mm
*/ rainfall: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.rainfall.xml | Rainfall} */ export declare class RainfallImpl implements Rainfall { static readonly UUID_PREFIX = 10872; static readonly TYPE_NAME = "org.bluetooth.characteristic.rainfall"; static readonly NAME = "Rainfall"; /** Parse from a DataView into {@link Rainfall}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): RainfallImpl; readonly rainfall: number; constructor(rainfall: Rainfall); } /** Parse from a DataView into {@link Rainfall}. */ export declare function rainfallFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Rainfall; //# sourceMappingURL=rainfall.d.ts.map