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