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