import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { RTORQapdu } from '../Reliable-Transfer-APDU/RTORQapdu.ta.mjs'; import { RTOACapdu } from '../Reliable-Transfer-APDU/RTOACapdu.ta.mjs'; import { RTORJapdu } from '../Reliable-Transfer-APDU/RTORJapdu.ta.mjs'; import { RTTPapdu } from '../Reliable-Transfer-APDU/RTTPapdu.ta.mjs'; import { RTTRapdu } from '../Reliable-Transfer-APDU/RTTRapdu.ta.mjs'; import { RTABapdu } from '../Reliable-Transfer-APDU/RTABapdu.ta.mjs'; /** * @summary RTSE_apdus * @description * * ### ASN.1 Definition: * * ```asn1 * RTSE-apdus ::= CHOICE { * rtorq-apdu [16] IMPLICIT RTORQapdu, * rtoac-apdu [17] IMPLICIT RTOACapdu, * rtorj-apdu [18] IMPLICIT RTORJapdu, * rttp-apdu RTTPapdu, * rttr-apdu RTTRapdu, * rtab-apdu [22] IMPLICIT RTABapdu * } * ``` */ export type RTSE_apdus = { rtorq_apdu: RTORQapdu; } | { rtoac_apdu: RTOACapdu; } | { rtorj_apdu: RTORJapdu; } | { rttp_apdu: RTTPapdu; } | { rttr_apdu: RTTRapdu; } | { rtab_apdu: RTABapdu; }; /** * @summary Decodes an ASN.1 element into a(n) RTSE_apdus * @function * @param {_Element} el The element being decoded. * @returns {RTSE_apdus} The decoded data structure. */ export declare function _decode_RTSE_apdus(el: _Element): RTSE_apdus; /** * @summary Encodes a(n) RTSE_apdus 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 RTSE_apdus, encoded as an ASN.1 Element. */ export declare function _encode_RTSE_apdus(value: RTSE_apdus, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=RTSE-apdus.ta.d.mts.map