import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { OsiUnbindResult_fully_encoded_data_Item } from "../OSIProtocolSpecification/OsiUnbindResult-fully-encoded-data-Item.ta.mjs"; /** * @summary OsiUnbindResult * @description * * ### ASN.1 Definition: * * ```asn1 * OsiUnbindResult ::= 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(TheOsiUnbindRes)}}} * ``` */ export type OsiUnbindResult = { fully_encoded_data: OsiUnbindResult_fully_encoded_data_Item[]; }; /** * @summary Decodes an ASN.1 element into a(n) OsiUnbindResult * @function * @param {_Element} el The element being decoded. * @returns {OsiUnbindResult} The decoded data structure. */ export declare function _decode_OsiUnbindResult(el: _Element): OsiUnbindResult; /** * @summary Encodes a(n) OsiUnbindResult 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 OsiUnbindResult, encoded as an ASN.1 Element. */ export declare function _encode_OsiUnbindResult(value: OsiUnbindResult, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=OsiUnbindResult.ta.d.mts.map