import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { DynamicSimpleScanArgument_scopeOrListChoice_scopedSelection } from '../SummarizationASN1Productions/DynamicSimpleScanArgument-scopeOrListChoice-scopedSelection.ta.mjs'; import { ObjectList } from '../SummarizationASN1Productions/ObjectList.ta.mjs'; /** * @summary DynamicSimpleScanArgument_scopeOrListChoice * @description * * ### ASN.1 Definition: * * ```asn1 * DynamicSimpleScanArgument-scopeOrListChoice ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type DynamicSimpleScanArgument_scopeOrListChoice = { scopedSelection: DynamicSimpleScanArgument_scopeOrListChoice_scopedSelection; } | { objectList: ObjectList; }; /** * @summary Decodes an ASN.1 element into a(n) DynamicSimpleScanArgument_scopeOrListChoice * @function * @param {_Element} el The element being decoded. * @returns {DynamicSimpleScanArgument_scopeOrListChoice} The decoded data structure. */ export declare function _decode_DynamicSimpleScanArgument_scopeOrListChoice(el: _Element): DynamicSimpleScanArgument_scopeOrListChoice; /** * @summary Encodes a(n) DynamicSimpleScanArgument_scopeOrListChoice 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 DynamicSimpleScanArgument_scopeOrListChoice, encoded as an ASN.1 Element. */ export declare function _encode_DynamicSimpleScanArgument_scopeOrListChoice(value: DynamicSimpleScanArgument_scopeOrListChoice, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=DynamicSimpleScanArgument-scopeOrListChoice.ta.d.mts.map