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

The Altitude characteristic describes the altitude of the device.

*/ export interface Altitude { /**

Format: `uint16`

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