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

The Longitude characteristic describes the WGS84 East coordinate of the device.

*/ export interface Longitude { /**

Format: `sint32`

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