import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AttributeMappings_Item } from "../AttributeCertificateDefinitions/AttributeMappings-Item.ta.mjs"; /** * @summary AttributeMappings * @description * * ### ASN.1 Definition: * * ```asn1 * AttributeMappings ::= SET OF CHOICE { * typeMappings [0] SEQUENCE { * local [0] AttributeType, * remote [1] AttributeType, * ... }, * typeValueMappings [1] SEQUENCE { * local [0] AttributeTypeAndValue, * remote [1] AttributeTypeAndValue, * ... } } * ``` */ export type AttributeMappings = AttributeMappings_Item[]; /** * @summary Decodes an ASN.1 element into a(n) AttributeMappings * @function * @param {_Element} el The element being decoded. * @returns {AttributeMappings} The decoded data structure. */ export declare function _decode_AttributeMappings(el: _Element): AttributeMappings; /** * @summary Encodes a(n) AttributeMappings 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 AttributeMappings, encoded as an ASN.1 Element. */ export declare function _encode_AttributeMappings(value: AttributeMappings, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AttributeMappings.ta.d.mts.map