import { type DataViewReader } from "./data-view-reader.js"; export interface BarometricPressureTrend { /** *

Format: `uint8`

*

Unit: `org.bluetooth.unit.unitless`

* | Key | Description | * | --- | ----------------------------- | * | 0 | Unknown | * | 1 | Continuously falling | * | 2 | Continuously rising | * | 3 | Falling, then steady | * | 4 | Rising, then steady | * | 5 | Falling before a lesser rise | * | 6 | Falling before a greater rise | * | 7 | Rising before a greater fall | * | 8 | Rising before a lesser fall | * | 9 | Steady | * *

Reserved for future use: 10 to 255

*/ barometricPressureTrend: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.barometric_pressure_trend.xml | Barometric Pressure Trend} */ export declare class BarometricPressureTrendImpl implements BarometricPressureTrend { static readonly UUID_PREFIX = 10915; static readonly TYPE_NAME = "org.bluetooth.characteristic.barometric_pressure_trend"; static readonly NAME = "Barometric Pressure Trend"; /** Parse from a DataView into {@link BarometricPressureTrend}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): BarometricPressureTrendImpl; readonly barometricPressureTrend: number; constructor(barometricPressureTrend: BarometricPressureTrend); } /** Parse from a DataView into {@link BarometricPressureTrend}. */ export declare function barometricPressureTrendFromDataView(dataView: DataView | DataViewReader, indexStart?: number): BarometricPressureTrend; //# sourceMappingURL=barometric-pressure-trend.d.ts.map