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