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