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

Format: `8bit`

*

Minimum: 0

*

Maximum: 7

* | Key | Description | * | --- | --------------------- | * | 0 | Unknown | * | 1 | Network Time Protocol | * | 2 | GPS | * | 3 | Radio Time Signal | * | 4 | Manual | * | 5 | Atomic Clock | * | 6 | Cellular Network | * *

Reserved for future use: 7 to 255

*/ timeSource: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.time_source.xml | Time Source} */ export declare class TimeSourceImpl implements TimeSource { static readonly UUID_PREFIX = 10771; static readonly TYPE_NAME = "org.bluetooth.characteristic.time_source"; static readonly NAME = "Time Source"; /** Parse from a DataView into {@link TimeSource}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TimeSourceImpl; readonly timeSource: number; constructor(timeSource: TimeSource); } /** Parse from a DataView into {@link TimeSource}. */ export declare function timeSourceFromDataView(dataView: DataView | DataViewReader, indexStart?: number): TimeSource; //# sourceMappingURL=time-source.d.ts.map