import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ExpectedAttributeList_Item } from '../ChangeOverASN1Productions/ExpectedAttributeList-Item.ta.mjs'; /** * @summary ExpectedAttributeList * @description * * ### ASN.1 Definition: * * ```asn1 * ExpectedAttributeList ::= * SET OF * SEQUENCE {modifyOperator [0] IMPLICIT ModifyOperator DEFAULT replace, * attributeId [1] CMIP-ATTRIBUTE.&id({AttributeSet}), * attributeValue * [2] CMIP-ATTRIBUTE.&Value({AttributeSet}{@.attributeId}) * OPTIONAL} * ``` */ export type ExpectedAttributeList = ExpectedAttributeList_Item[]; /** * @summary Decodes an ASN.1 element into a(n) ExpectedAttributeList * @function * @param {_Element} el The element being decoded. * @returns {ExpectedAttributeList} The decoded data structure. */ export declare function _decode_ExpectedAttributeList(el: _Element): ExpectedAttributeList; /** * @summary Encodes a(n) ExpectedAttributeList 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 ExpectedAttributeList, encoded as an ASN.1 Element. */ export declare function _encode_ExpectedAttributeList(value: ExpectedAttributeList, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ExpectedAttributeList.ta.d.mts.map