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