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

Height of the User

*/ export interface Height { /** *

Format: `uint16`

*

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

*

Unit is in meters with a resolution of 0.01 .

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