import { ASN1Element as _Element, NULL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AttributeType } from "../InformationFramework/AttributeType.ta.mjs"; import { AttributeValueAssertion } from "../InformationFramework/AttributeValueAssertion.ta.mjs"; /** * @summary ModifyRights_Item_item * @description * * ### ASN.1 Definition: * * ```asn1 * ModifyRights-Item-item ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type ModifyRights_Item_item = { entry: NULL; } | { attribute: AttributeType; } | { value: AttributeValueAssertion; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) ModifyRights_Item_item * @function * @param {_Element} el The element being decoded. * @returns {ModifyRights_Item_item} The decoded data structure. */ export declare function _decode_ModifyRights_Item_item(el: _Element): ModifyRights_Item_item; /** * @summary Encodes a(n) ModifyRights_Item_item 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 ModifyRights_Item_item, encoded as an ASN.1 Element. */ export declare function _encode_ModifyRights_Item_item(value: ModifyRights_Item_item, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ModifyRights-Item-item.ta.d.mts.map