import { type DataViewReader } from "./data-view-reader.js"; import { type DateTime } from "./date-time.js"; import { type DstOffset } from "./dst-offset.js"; export interface TimeWithDst { dateTime: DateTime; dstOffset: DstOffset; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.time_with_dst.xml | Time With Dst} */ export declare class TimeWithDstImpl implements TimeWithDst { static readonly UUID_PREFIX = 10769; static readonly TYPE_NAME = "org.bluetooth.characteristic.time_with_dst"; static readonly NAME = "Time with DST"; /** Parse from a DataView into {@link TimeWithDst}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): TimeWithDstImpl; readonly dateTime: DateTime; readonly dstOffset: DstOffset; constructor(timeWithDst: TimeWithDst); } /** Parse from a DataView into {@link TimeWithDst}. */ export declare function timeWithDstFromDataView(dataView: DataView | DataViewReader, indexStart?: number): TimeWithDst; //# sourceMappingURL=time-with-dst.d.ts.map