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

Format: `uint8`

*

Minimum: 0

*

Maximum: 8

* | Key | Description | * | --- | ---------------------------------- | * | 0 | Standard Time | * | 2 | Half An Hour Daylight Time (+0.5h) | * | 4 | Daylight Time (+1h) | * | 8 | Double Daylight Time (+2h) | * *

Reserved: 0 to -1

*/ dstOffset: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.dst_offset.xml | Dst Offset} */ export declare class DstOffsetImpl implements DstOffset { static readonly UUID_PREFIX = 10765; static readonly TYPE_NAME = "org.bluetooth.characteristic.dst_offset"; static readonly NAME = "DST Offset"; /** Parse from a DataView into {@link DstOffset}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): DstOffsetImpl; readonly dstOffset: number; constructor(dstOffset: DstOffset); } /** Parse from a DataView into {@link DstOffset}. */ export declare function dstOffsetFromDataView(dataView: DataView | DataViewReader, indexStart?: number): DstOffset; //# sourceMappingURL=dst-offset.d.ts.map