import { type DataViewReader } from "./data-view-reader.js"; export interface TimeAccuracy { /** *

Format: `uint8`

*

Accuracy (drift) of time information in steps of 1/8 of a second (125ms) compared to a reference time source. Valid range from 0 to 253 (0s to 31.5s). A value of 254 means Accuracy is out of range (> 31.5s). A value of 255 means Accuracy is unknown.

*

Minimum: 0

*

Maximum: 253

*/ accuracy: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.time_accuracy.xml | Time Accuracy} */ export declare class TimeAccuracyImpl implements TimeAccuracy { static readonly UUID_PREFIX = 10770; static readonly TYPE_NAME = "org.bluetooth.characteristic.time_accuracy"; static readonly NAME = "Time Accuracy"; /** Parse from a DataView into {@link TimeAccuracy}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TimeAccuracyImpl; readonly accuracy: number; constructor(timeAccuracy: TimeAccuracy); } /** Parse from a DataView into {@link TimeAccuracy}. */ export declare function timeAccuracyFromDataView(dataView: DataView | DataViewReader, indexStart?: number): TimeAccuracy; //# sourceMappingURL=time-accuracy.d.ts.map