import type { Filtered } from '../../config/types.js'; /** * Interface representing the comparison statistics between two environment files */ interface CompareStats { /** Total number of keys in the environment file */ envCount: number; /** Total number of keys in the example file */ exampleCount: number; /** Number of keys that are shared between the environment and example files */ sharedCount: number; /** Number of duplicate keys found in either file */ duplicateCount: number; /** Number of keys that have mismatched values between the two files (if value checking is enabled) */ valueMismatchCount: number; } /** * Print comparison statistics between two environment files. * @param envName The name of the environment file. * @param exampleName The name of the example file. * @param s The comparison statistics. * @param filtered The filtered keys. * @param json Whether to output in JSON format. * @param showStats Whether to show statistics. * @param checkValues Whether value checking is enabled. */ export declare function printStats(envName: string, exampleName: string, s: CompareStats, filtered: Pick, json: boolean, showStats: boolean, checkValues: boolean): void; export {}; //# sourceMappingURL=printStats.d.ts.map