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