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

Format: `uint32`

*

Unit: `org.bluetooth.unit.pressure.pascal`

*

Unit is in pascals with a resolution of 0.1 Pa

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