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

Format: `sint24`

*

Unit: `org.bluetooth.unit.length.meter`

*

Unit is in meters with a resolution of 0.01 m

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