import type { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import type { RelativeDistinguishedName } from "../modules/InformationFramework/RelativeDistinguishedName.ta.mjs"; import type EqualityMatcher from "../types/EqualityMatcher.mjs"; /** * @summary Compare two `RelativeDistinguishedName` values * @param a One value * @param b The other * @returns {boolean} `true` if they match; `false` otherwise * @function */ export default function compare(a: RelativeDistinguishedName, b: RelativeDistinguishedName, getEqualityMatcher: (attributeType: OBJECT_IDENTIFIER) => EqualityMatcher | undefined): boolean; //# sourceMappingURL=compareRelativeDistinguishedName.d.mts.map