import type { DuplicateResult, Filtered } from '../../config/types.js'; /** * Calculates statistics for the comparison between current and example environment files. * @param currentKeys - The keys from the current environment file. * @param exampleKeys - The keys from the example environment file. * @param dupsEnv - Duplicates found in the current environment file. * @param dupsEx - Duplicates found in the example environment file. * @param filtered - The filtered comparison results. * @param checkValues - Whether value mismatches were checked. * @returns An object containing various statistics about the comparison. */ export declare function calculateStats(currentKeys: string[], exampleKeys: string[], dupsEnv: DuplicateResult['dupsEnv'], dupsEx: DuplicateResult['dupsEx'], filtered: Filtered, checkValues: boolean): { envCount: number; exampleCount: number; sharedCount: number; duplicateCount: number; valueMismatchCount: number; }; //# sourceMappingURL=calculateStats.d.ts.map