import { type DataViewReader } from "./data-view-reader.js"; /**
Weight of the User
*/ export interface Weight { /** *Format: `uint16`
*Unit: `org.bluetooth.unit.mass.kilogram`
*Unit is in kilograms with a resolution of 0.005.
*/ weight: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.weight.xml | Weight} */ export declare class WeightImpl implements Weight { static readonly UUID_PREFIX = 10904; static readonly TYPE_NAME = "org.bluetooth.characteristic.weight"; static readonly NAME = "Weight"; /** Parse from a DataView into {@link Weight}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): WeightImpl; readonly weight: number; constructor(weight: Weight); } /** Parse from a DataView into {@link Weight}. */ export declare function weightFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Weight; //# sourceMappingURL=weight.d.ts.map