import { CryptoAlgorithm, CryptoAlgorithmRules } from "../../../CryptographyTypes"; /** * Function to create a mapping of regular expressions based on provided crypto definitions. * @param cryptoRulesDefinitions An array of objects containing cryptographic definitions. * @returns A Map where each key is a cryptographic algorithm and each value is a regular expression * that matches keywords associated with that algorithm. */ export declare function createCryptoKeywordMapper(cryptoRulesDefinitions: Array): Map; /** * Function to create a mapping of cryptographic algorithms and their strengths. * @param cryptoDefinitions An array of objects containing cryptographic definitions. * @returns A Map where each key is a cryptographic algorithm and each value is an object * containing the algorithm's name and strength. */ export declare function getCryptoMapper(cryptoDefinitions: Array): Map;