import { type DataViewReader } from "./data-view-reader.js"; /**
Age of the User.
*/ export interface Age { /** *Format: `uint8`
*Unit: `org.bluetooth.unit.time.year`
*/ age: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.age.xml | Age} */ export declare class AgeImpl implements Age { static readonly UUID_PREFIX = 10880; static readonly TYPE_NAME = "org.bluetooth.characteristic.age"; static readonly NAME = "Age"; /** Parse from a DataView into {@link Age}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): AgeImpl; readonly age: number; constructor(age: Age); } /** Parse from a DataView into {@link Age}. */ export declare function ageFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Age; //# sourceMappingURL=age.d.ts.map