import { DateTimeExtended } from "./DateTimeExtended"; import { Interval } from "./Interval"; import { LongInt } from "./LongInt"; import { TtlvType } from "./TtlvType"; export declare type TtlvValue = TTLV[] | Date | Uint8Array | LongInt | Interval | DateTimeExtended | number | bigint | boolean | string; export declare class TTLV { tag: string; type: TtlvType; value: TtlvValue; constructor(tag: string, type: TtlvType, value: TtlvValue); } //# sourceMappingURL=Ttlv.d.ts.map