import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { GlobalTime } from '../TimeMF/GlobalTime.ta.mjs'; /** * @summary ClockValue * @description * * ### ASN.1 Definition: * * ```asn1 * ClockValue ::= GlobalTime * ``` */ export type ClockValue = GlobalTime; /** * @summary Decodes an ASN.1 element into a(n) ClockValue * @function * @param {_Element} el The element being decoded. * @returns {ClockValue} The decoded data structure. */ export declare function _decode_ClockValue(el: _Element): ClockValue; /** * @summary Encodes a(n) ClockValue into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The ClockValue, encoded as an ASN.1 Element. */ export declare function _encode_ClockValue(value: ClockValue, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ClockValue.ta.d.mts.map