import { ASN1Element as _Element, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AbandonResultData } from "../DirectoryAbstractService/AbandonResultData.ta.mjs"; import { OPTIONALLY_PROTECTED_SEQ } from "../EnhancedSecurity/OPTIONALLY-PROTECTED-SEQ.ta.mjs"; /** * @summary AbandonResult * @description * * ### ASN.1 Definition: * * ```asn1 * AbandonResult ::= CHOICE { * null NULL, * information OPTIONALLY-PROTECTED-SEQ { AbandonResultData }, * ... } * ``` */ export type AbandonResult = { null_: NULL; } | { information: OPTIONALLY_PROTECTED_SEQ; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) AbandonResult * @function * @param {_Element} el The element being decoded. * @returns {AbandonResult} The decoded data structure. */ export declare function _decode_AbandonResult(el: _Element): AbandonResult; /** * @summary Encodes a(n) AbandonResult 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 AbandonResult, encoded as an ASN.1 Element. */ export declare function _encode_AbandonResult(value: AbandonResult, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AbandonResult.ta.d.mts.map