import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { Context_list } from '../ACSE-1/Context-list.ta.mjs'; import { Default_Context_List } from '../ACSE-1/Default-Context-List.ta.mjs'; /** * @summary Syntactic_context_list * @description * * ### ASN.1 Definition: * * ```asn1 * Syntactic-context-list ::= CHOICE { * context-list [0] Context-list, * default-contact-list [1] Default-Context-List * } * ``` */ export type Syntactic_context_list = { context_list: Context_list; } | { default_contact_list: Default_Context_List; }; /** * @summary Decodes an ASN.1 element into a(n) Syntactic_context_list * @function * @param {_Element} el The element being decoded. * @returns {Syntactic_context_list} The decoded data structure. */ export declare function _decode_Syntactic_context_list(el: _Element): Syntactic_context_list; /** * @summary Encodes a(n) Syntactic_context_list 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 Syntactic_context_list, encoded as an ASN.1 Element. */ export declare function _encode_Syntactic_context_list(value: Syntactic_context_list, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Syntactic-context-list.ta.d.mts.map