import * as $ from '@wildboar/asn1/functional'; import { PartialAttribute } from '../Lightweight-Directory-Access-Protocol-V3/PartialAttribute.ta.mjs'; /** * @summary Attribute * @description * * ### ASN.1 Definition: * * ```asn1 * Attribute ::= PartialAttribute(WITH COMPONENTS { * ..., * vals (SIZE (1..MAX)) * }) * ``` */ export type Attribute = PartialAttribute; /** * @summary Decodes an ASN.1 element into a(n) Attribute * @function * @param {_Element} el The element being decoded. * @returns {Attribute} The decoded data structure. */ export declare const _decode_Attribute: $.ASN1Decoder; /** * @summary Encodes a(n) Attribute 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 Attribute, encoded as an ASN.1 Element. */ export declare const _encode_Attribute: $.ASN1Encoder; //# sourceMappingURL=Attribute.ta.d.mts.map