import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { IndependentTestResponse } from '../Test-ASN1Module/IndependentTestResponse.ta.mjs'; import { TONotCreated } from '../Test-ASN1Module/TONotCreated.ta.mjs'; /** * @summary IndependentTestInvocationError_Item * @description * * ### ASN.1 Definition: * * ```asn1 * IndependentTestInvocationError-Item ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type IndependentTestInvocationError_Item = { testInstanceCreated: IndependentTestResponse; } | { tONotCreated: TONotCreated; }; /** * @summary Decodes an ASN.1 element into a(n) IndependentTestInvocationError_Item * @function * @param {_Element} el The element being decoded. * @returns {IndependentTestInvocationError_Item} The decoded data structure. */ export declare function _decode_IndependentTestInvocationError_Item(el: _Element): IndependentTestInvocationError_Item; /** * @summary Encodes a(n) IndependentTestInvocationError_Item 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 IndependentTestInvocationError_Item, encoded as an ASN.1 Element. */ export declare function _encode_IndependentTestInvocationError_Item(value: IndependentTestInvocationError_Item, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=IndependentTestInvocationError-Item.ta.d.mts.map