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