import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { AttributeType } from "../InformationFramework/AttributeType.ta.mjs"; /** * @summary AttributeCombination * @description * * ### ASN.1 Definition: * * ```asn1 * AttributeCombination ::= CHOICE { * attribute [0] AttributeType, * and [1] SEQUENCE OF AttributeCombination, * or [2] SEQUENCE OF AttributeCombination, * not [3] AttributeCombination, * ... } * ``` */ export type AttributeCombination = { attribute: AttributeType; } | { and: AttributeCombination[]; } | { or: AttributeCombination[]; } | { not: AttributeCombination; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) AttributeCombination * @function * @param {_Element} el The element being decoded. * @returns {AttributeCombination} The decoded data structure. */ export declare function _decode_AttributeCombination(el: _Element): AttributeCombination; /** * @summary Encodes a(n) AttributeCombination 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 AttributeCombination, encoded as an ASN.1 Element. */ export declare function _encode_AttributeCombination(value: AttributeCombination, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AttributeCombination.ta.d.mts.map