import { type DataViewReader } from "./data-view-reader.js"; export interface UserIndex { /** *
Format: `uint8`
* | Key | Description | * | --- | ------------ | * | 255 | Unknown User | * */ userIndex: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.user_index.xml | User Index} */ export declare class UserIndexImpl implements UserIndex { static readonly UUID_PREFIX = 10906; static readonly TYPE_NAME = "org.bluetooth.characteristic.user_index"; static readonly NAME = "User Index"; /** Parse from a DataView into {@link UserIndex}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): UserIndexImpl; readonly userIndex: number; constructor(userIndex: UserIndex); } /** Parse from a DataView into {@link UserIndex}. */ export declare function userIndexFromDataView(dataView: DataView | DataViewReader, indexStart?: number): UserIndex; //# sourceMappingURL=user-index.d.ts.map