import type { OCTET_STRING } from "@wildboar/asn1"; /** * @summary Compare two X.213 NSAP values * @description * * This normalizes NSAPs for comparison, such as by adding default port numbers * if they are missing and comparing DNS hostnames after converting to ASCII and * lowercasing. * * @param a One value * @param b The other * @returns {boolean} `true` if they match; `false` otherwise * @function */ export declare function compareNSAP(a: OCTET_STRING, b: OCTET_STRING): boolean; export default compareNSAP; //# sourceMappingURL=compareNSAPs.d.mts.map