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