import type { AttributeTypeAndValue as ATAV } from "../types/AttributeTypeAndValue.mjs"; import type { StringDecoderGetter } from "../types/StringDecoderGetter.mjs"; type RDN = ATAV[]; /** * @summary Parse an RDN sequence from a string according to RFC 4514. * @description * * This function parses an RDN sequence from a string according to * [IETF RFC 4514](https://www.rfc-editor.org/rfc/rfc4514). * * @param str The string to parse. * @param getStringDecoder A function that can be used to get a string decoder. * @param escape The escape character. * @param rdnDelimiter The RDN delimiter. * @param atavDelimiter The ATAV delimiter. * @yields RDNs from the sequence from left to right. * @function */ export default function rdnSequenceFromString(str: string, getStringDecoder: StringDecoderGetter, escape?: number, rdnDelimiter?: number, atavDelimiter?: number): IterableIterator; export {}; //# sourceMappingURL=RDNSequence.d.mts.map