import { type DataViewReader } from "./data-view-reader.js"; export interface PollenConcentration { /** *
Format: `uint24`
*Unit: `org.bluetooth.unit.concentration.count_per_cubic_metre`
*Unit is in concentration count per cubic meter with a resolution of 1/m^3
*/ pollenConcentration: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.pollen_concentration.xml | Pollen Concentration} */ export declare class PollenConcentrationImpl implements PollenConcentration { static readonly UUID_PREFIX = 10869; static readonly TYPE_NAME = "org.bluetooth.characteristic.pollen_concentration"; static readonly NAME = "Pollen Concentration"; /** Parse from a DataView into {@link PollenConcentration}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): PollenConcentrationImpl; readonly pollenConcentration: number; constructor(pollenConcentration: PollenConcentration); } /** Parse from a DataView into {@link PollenConcentration}. */ export declare function pollenConcentrationFromDataView(dataView: DataView | DataViewReader, indexStart?: number): PollenConcentration; //# sourceMappingURL=pollen-concentration.d.ts.map