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

Offset from UTC in number of 15 minutes increments. A value of -128 means that the time zone offset is not known. The offset defined in this characteristic is constant, regardless whether daylight savings is in effect.

*

Format: `sint8`

*

Minimum: -48

*

Maximum: 56

*/ timeZone: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.time_zone.xml | Time Zone} */ export declare class TimeZoneImpl implements TimeZone { static readonly UUID_PREFIX = 10766; static readonly TYPE_NAME = "org.bluetooth.characteristic.time_zone"; static readonly NAME = "Time Zone"; /** Parse from a DataView into {@link TimeZone}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TimeZoneImpl; readonly timeZone: number; constructor(timeZone: TimeZone); } /** Parse from a DataView into {@link TimeZone}. */ export declare function timeZoneFromDataView(dataView: DataView | DataViewReader, indexStart?: number): TimeZone; //# sourceMappingURL=time-zone.d.ts.map