import type { ScanResult } from '../../config/types.js'; /** * Compares the scan result with the environment variables. * This function identifies missing and unused environment variables. * @param scanResult - The result of the scan. * @param envVariables - The environment variables to compare against. * @param ignore - List of keys to ignore. * @param ignoreRegex - List of regex patterns to ignore. * @returns The comparison result. */ export declare function compareWithEnvFiles(scanResult: ScanResult, envVariables: Record, ignore?: string[], ignoreRegex?: RegExp[]): ScanResult; //# sourceMappingURL=compareScan.d.ts.map