import { ASN1Element as _Element, INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Period_days_bitDay } from "../SelectedAttributeTypes/Period-days-bitDay.ta.mjs"; import { XDayOf } from "../SelectedAttributeTypes/XDayOf.ta.mjs"; /** * @summary Period_days * @description * * ### ASN.1 Definition: * * ```asn1 * Period-days ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type Period_days = { intDay: INTEGER[]; } | { bitDay: Period_days_bitDay; } | { dayOf: XDayOf; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) Period_days * @function * @param {_Element} el The element being decoded. * @returns {Period_days} The decoded data structure. */ export declare function _decode_Period_days(el: _Element): Period_days; /** * @summary Encodes a(n) Period_days 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 Period_days, encoded as an ASN.1 Element. */ export declare function _encode_Period_days(value: Period_days, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Period-days.ta.d.mts.map