import { type DataViewReader } from "./data-view-reader.js"; export interface UvIndex { /** *
Format: `uint8`
*Unit: `org.bluetooth.unit.unitless`
*/ uvIndex: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.uv_index.xml | Uv Index} */ export declare class UvIndexImpl implements UvIndex { static readonly UUID_PREFIX = 10870; static readonly TYPE_NAME = "org.bluetooth.characteristic.uv_index"; static readonly NAME = "UV Index"; /** Parse from a DataView into {@link UvIndex}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): UvIndexImpl; readonly uvIndex: number; constructor(uvIndex: UvIndex); } /** Parse from a DataView into {@link UvIndex}. */ export declare function uvIndexFromDataView(dataView: DataView | DataViewReader, indexStart?: number): UvIndex; //# sourceMappingURL=uv-index.d.ts.map