import { type DataViewReader } from "./data-view-reader.js"; import { type TimeZone } from "./time-zone.js"; import { type DstOffset } from "./dst-offset.js"; export interface LocalTimeInformation { daylightSavingTime: DstOffset; timeZone: TimeZone; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.local_time_information.xml | Local Time Information} */ export declare class LocalTimeInformationImpl implements LocalTimeInformation { static readonly UUID_PREFIX = 10767; static readonly TYPE_NAME = "org.bluetooth.characteristic.local_time_information"; static readonly NAME = "Local Time Information"; /** Parse from a DataView into {@link LocalTimeInformation}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): LocalTimeInformationImpl; readonly daylightSavingTime: DstOffset; readonly timeZone: TimeZone; constructor(localTimeInformation: LocalTimeInformation); } /** Parse from a DataView into {@link LocalTimeInformation}. */ export declare function localTimeInformationFromDataView(dataView: DataView | DataViewReader, indexStart?: number): LocalTimeInformation; //# sourceMappingURL=local-time-information.d.ts.map