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