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