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

The Latitude characteristic describes the WGS84 North coordinate of the device.

*/ export interface Latitude { /**

Format: `sint32`

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