import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ASOI_tag_Item } from '../ACSE-1/ASOI-tag-Item.ta.mjs'; /** * @summary ASOI_tag * @description * * ### ASN.1 Definition: * * ```asn1 * ASOI-tag ::= * SEQUENCE SIZE (0..7, ...) OF * SEQUENCE {qualifier [0] ASO-qualifier OPTIONAL, * identifier [1] ASOI-identifier OPTIONAL} * ``` */ export type ASOI_tag = ASOI_tag_Item[]; /** * @summary Decodes an ASN.1 element into a(n) ASOI_tag * @function * @param {_Element} el The element being decoded. * @returns {ASOI_tag} The decoded data structure. */ export declare function _decode_ASOI_tag(el: _Element): ASOI_tag; /** * @summary Encodes a(n) ASOI_tag 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 ASOI_tag, encoded as an ASN.1 Element. */ export declare function _encode_ASOI_tag(value: ASOI_tag, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ASOI-tag.ta.d.mts.map