import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { NamedDay } from "../SelectedAttributeTypes/NamedDay.ta.mjs"; /** * @summary XDayOf * @description * * ### ASN.1 Definition: * * ```asn1 * XDayOf ::= CHOICE { * first [1] NamedDay, * second [2] NamedDay, * third [3] NamedDay, * fourth [4] NamedDay, * fifth [5] NamedDay } * ``` */ export type XDayOf = { first: NamedDay; } | { second: NamedDay; } | { third: NamedDay; } | { fourth: NamedDay; } | { fifth: NamedDay; }; /** * @summary Decodes an ASN.1 element into a(n) XDayOf * @function * @param {_Element} el The element being decoded. * @returns {XDayOf} The decoded data structure. */ export declare function _decode_XDayOf(el: _Element): XDayOf; /** * @summary Encodes a(n) XDayOf 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 XDayOf, encoded as an ASN.1 Element. */ export declare function _encode_XDayOf(value: XDayOf, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=XDayOf.ta.d.mts.map