import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { ENCIPHERED } from "../CryptoTools/ENCIPHERED.ta.mjs"; import { WrappedProt } from "../Wrapper/WrappedProt.ta.mjs"; /** * @summary TbpDataTransferServer_conf * @description * * ### ASN.1 Definition: * * ```asn1 * TbpDataTransferServer-conf ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type TbpDataTransferServer_conf = { clear: WrappedProt; } | { protected_: ENCIPHERED<_Element>; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) TbpDataTransferServer_conf * @function * @param {_Element} el The element being decoded. * @returns {TbpDataTransferServer_conf} The decoded data structure. */ export declare function _decode_TbpDataTransferServer_conf(el: _Element): TbpDataTransferServer_conf; /** * @summary Encodes a(n) TbpDataTransferServer_conf 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 TbpDataTransferServer_conf, encoded as an ASN.1 Element. */ export declare function _encode_TbpDataTransferServer_conf(value: TbpDataTransferServer_conf, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TbpDataTransferServer-conf.ta.d.mts.map