import type { AttributeDescription } from "../lib/modules/Lightweight-Directory-Access-Protocol-V3/AttributeDescription.ta.mjs"; /** * @summary Compare two `AttributeDescription`s * @description * * This function compares two `AttributeDescription`s. These cannot be compared * simply with `===` because they may contain options like ";binary", and they * are case-insensitive. * * @param a One `AttributeDescription` * @param b The other * @returns Whether they match * @function */ export declare function compareAttributeDescription(a: AttributeDescription, b: AttributeDescription): boolean; export default compareAttributeDescription; //# sourceMappingURL=compareAttributeDescription.d.mts.map