import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { ToBeTestedMORTs_scopedSet } from '../Test-ASN1Module/ToBeTestedMORTs-scopedSet.ta.mjs'; /** * @summary ToBeTestedMORTs * @description * * ### ASN.1 Definition: * * ```asn1 * ToBeTestedMORTs ::= CHOICE { * normalForm [29] SET OF ObjectInstance, * scopedSet * [30] SEQUENCE {base ObjectInstance, * mORTsScope0 Scope DEFAULT namedNumbers:baseObject, * mORTsFilter [3] CMISFilter DEFAULT and:{}} * } * ``` */ export type ToBeTestedMORTs = { normalForm: ObjectInstance[]; } | { scopedSet: ToBeTestedMORTs_scopedSet; }; /** * @summary Decodes an ASN.1 element into a(n) ToBeTestedMORTs * @function * @param {_Element} el The element being decoded. * @returns {ToBeTestedMORTs} The decoded data structure. */ export declare function _decode_ToBeTestedMORTs(el: _Element): ToBeTestedMORTs; /** * @summary Encodes a(n) ToBeTestedMORTs 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 ToBeTestedMORTs, encoded as an ASN.1 Element. */ export declare function _encode_ToBeTestedMORTs(value: ToBeTestedMORTs, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ToBeTestedMORTs.ta.d.mts.map