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