import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { SecurityProblem } from "../DirectoryAbstractService/SecurityProblem.ta.mjs"; import { ServiceProblem } from "../DirectoryAbstractService/ServiceProblem.ta.mjs"; /** * @summary DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error * @description * * ### ASN.1 Definition: * * ```asn1 * DirectoryBindError-OPTIONALLY-PROTECTED-Parameter1-error ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error = { serviceError: ServiceProblem; } | { securityError: SecurityProblem; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error * @function * @param {_Element} el The element being decoded. * @returns {DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error} The decoded data structure. */ export declare function _decode_DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error(el: _Element): DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error; /** * @summary Encodes a(n) DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error 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 DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error, encoded as an ASN.1 Element. */ export declare function _encode_DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error(value: DirectoryBindError_OPTIONALLY_PROTECTED_Parameter1_error, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=DirectoryBindError-OPTIONALLY-PROTECTED-Parameter1-error.ta.d.mts.map