import { ASN1Element as _Element, INTEGER, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Period_months_bitMonth } from "../SelectedAttributeTypes/Period-months-bitMonth.ta.mjs"; /** * @summary Period_months * @description * * ### ASN.1 Definition: * * ```asn1 * Period-months ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type Period_months = { allMonths: NULL; } | { intMonth: INTEGER[]; } | { bitMonth: Period_months_bitMonth; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) Period_months * @function * @param {_Element} el The element being decoded. * @returns {Period_months} The decoded data structure. */ export declare function _decode_Period_months(el: _Element): Period_months; /** * @summary Encodes a(n) Period_months 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_months, encoded as an ASN.1 Element. */ export declare function _encode_Period_months(value: Period_months, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Period-months.ta.d.mts.map