import { type DataViewReader } from "./data-view-reader.js"; /**
The Characteristic Number of Digitals descriptor is used for defining the number of digitals in a characteristic.
*/ export interface NumberOfDigitals { /**Format: `uint8`
*/ noOfDigitals: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.descriptor.number_of_digitals.xml | Number Of Digitals} */ export declare class NumberOfDigitalsImpl implements NumberOfDigitals { static readonly UUID_PREFIX = 10505; static readonly TYPE_NAME = "org.bluetooth.descriptor.number_of_digitals"; static readonly NAME = "Number of Digitals"; /** Parse from a DataView into {@link NumberOfDigitals}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): NumberOfDigitalsImpl; readonly noOfDigitals: number; constructor(numberOfDigitals: NumberOfDigitals); } /** Parse from a DataView into {@link NumberOfDigitals}. */ export declare function numberOfDigitalsFromDataView(dataView: DataView | DataViewReader, indexStart?: number): NumberOfDigitals; //# sourceMappingURL=number-of-digitals.d.ts.map