import { type DataViewReader } from "./data-view-reader.js"; /**
The Digital characteristic is used to expose and change the state of an IO Module?s digital signals.
*/ export interface Digital { /** *Format: `2bit`
*The Digital characteristic is an array of n 2-bit values in a bit field
* | Key | Description | * | --- | ------------ | * | 0 | Inactive | * | 1 | Active | * | 2 | Tri-state | * | 3 | Output-state | * */ digital: number; } /** * The Octet Order in the above table is in the order of LSO to MSO, where LSO = Least Significant Octet and MSO = Most Significant Octet. * @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.digital.xml | Digital} */ export declare class DigitalImpl implements Digital { static readonly UUID_PREFIX = 10838; static readonly TYPE_NAME = "org.bluetooth.characteristic.digital"; static readonly NAME = "Digital"; /** Parse from a DataView into {@link Digital}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): DigitalImpl; readonly digital: number; constructor(digital: Digital); } /** Parse from a DataView into {@link Digital}. */ export declare function digitalFromDataView(dataView: DataView | DataViewReader, indexStart?: number): Digital; //# sourceMappingURL=digital.d.ts.map