import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { OsiUnbind_fully_encoded_data_Item } from "../OSIProtocolSpecification/OsiUnbind-fully-encoded-data-Item.ta.mjs"; /** * @summary OsiUnbind * @description * * ### ASN.1 Definition: * * ```asn1 * OsiUnbind ::= CHOICE { * fully-encoded-data * [APPLICATION 1] IMPLICIT SEQUENCE SIZE (1) OF SEQUENCE { * presentation-context-identifier Presentation-context-identifier, * presentation-data-values CHOICE { * single-ASN1-type [0] ABSTRACT-SYNTAX.&Type(TheOsiUnbind)}}} * ``` */ export type OsiUnbind = { fully_encoded_data: OsiUnbind_fully_encoded_data_Item[]; }; /** * @summary Decodes an ASN.1 element into a(n) OsiUnbind * @function * @param {_Element} el The element being decoded. * @returns {OsiUnbind} The decoded data structure. */ export declare function _decode_OsiUnbind(el: _Element): OsiUnbind; /** * @summary Encodes a(n) OsiUnbind 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 OsiUnbind, encoded as an ASN.1 Element. */ export declare function _encode_OsiUnbind(value: OsiUnbind, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=OsiUnbind.ta.d.mts.map