import { INTEGER, OBJECT_IDENTIFIER, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary SecurityLabel_Item_initiatorLabel_clearance * @description * * ### ASN.1 Definition: * * ```asn1 * SecurityLabel-Item-initiatorLabel-clearance ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type SecurityLabel_Item_initiatorLabel_clearance = { localForm: INTEGER; } | { globalForm: OBJECT_IDENTIFIER; }; /** * @summary Decodes an ASN.1 element into a(n) SecurityLabel_Item_initiatorLabel_clearance * @function * @param {_Element} el The element being decoded. * @returns {SecurityLabel_Item_initiatorLabel_clearance} The decoded data structure. */ export declare function _decode_SecurityLabel_Item_initiatorLabel_clearance(el: _Element): SecurityLabel_Item_initiatorLabel_clearance; /** * @summary Encodes a(n) SecurityLabel_Item_initiatorLabel_clearance 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 SecurityLabel_Item_initiatorLabel_clearance, encoded as an ASN.1 Element. */ export declare function _encode_SecurityLabel_Item_initiatorLabel_clearance(value: SecurityLabel_Item_initiatorLabel_clearance, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SecurityLabel-Item-initiatorLabel-clearance.ta.d.mts.map