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

The Local East characteristic describes the East coordinate of the device using local coordinate system.

*/ export interface LocalEastCoordinate { /**

Format: `sint16`

*/ localEastCoordinate: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.local_east_coordinate.xml | Local East Coordinate} */ export declare class LocalEastCoordinateImpl implements LocalEastCoordinate { static readonly UUID_PREFIX = 10929; static readonly TYPE_NAME = "org.bluetooth.characteristic.local_east_coordinate"; static readonly NAME = "Local East Coordinate"; /** Parse from a DataView into {@link LocalEastCoordinate}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): LocalEastCoordinateImpl; readonly localEastCoordinate: number; constructor(localEastCoordinate: LocalEastCoordinate); } /** Parse from a DataView into {@link LocalEastCoordinate}. */ export declare function localEastCoordinateFromDataView(dataView: DataView | DataViewReader, indexStart?: number): LocalEastCoordinate; //# sourceMappingURL=local-east-coordinate.d.ts.map