import type { Duplicate } from '../../config/types.js'; /** * Prints duplicate keys found in the environment and example files. * @param envName The name of the environment file. * @param exampleName The name of the example file. * @param dEnv Array of duplicate keys in the environment file with their counts. * @param dEx Array of duplicate keys in the example file with their counts. * @param json Whether to output in JSON format. * @param fix Whether fix mode is enabled (skips printing duplicates as they will be fixed). * @param strict Whether strict mode is enabled. * @returns void */ export declare function printDuplicates(envName: string, exampleName: string, dEnv: Duplicate[], dEx: Duplicate[], json: boolean, fix?: boolean, strict?: boolean): void; //# sourceMappingURL=printDuplicates.d.ts.map