import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { CertUpdateOK_Item_not_ok } from "../PkiPMIProtocolSpecifications/CertUpdateOK-Item-not-ok.ta.mjs"; import { CertUpdateOK_Item_ok } from "../PkiPMIProtocolSpecifications/CertUpdateOK-Item-ok.ta.mjs"; /** * @summary CertUpdateOK_Item * @description * * ### ASN.1 Definition: * * ```asn1 * CertUpdateOK-Item ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type CertUpdateOK_Item = { ok: CertUpdateOK_Item_ok; } | { not_ok: CertUpdateOK_Item_not_ok; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) CertUpdateOK_Item * @function * @param {_Element} el The element being decoded. * @returns {CertUpdateOK_Item} The decoded data structure. */ export declare function _decode_CertUpdateOK_Item(el: _Element): CertUpdateOK_Item; /** * @summary Encodes a(n) CertUpdateOK_Item 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 CertUpdateOK_Item, encoded as an ASN.1 Element. */ export declare function _encode_CertUpdateOK_Item(value: CertUpdateOK_Item, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=CertUpdateOK-Item.ta.d.mts.map