import type { Plugin, Rules } from './types.ts'; /** * Check that all rule differences between recommended and current configs are explicitly declared. * * This function ensures that: * 1. All recommended rules are either used or explicitly disabled with a reason * 2. All extra enabled rules are explicitly declared with a reason * * When differences are found, detailed error messages with documentation links are shown. */ export declare function checkRules(options: { plugin: Plugin; currentRules: Rules; recommendedRules: Rules; disabledRules: string[]; enabledRules: string[]; }): void; //# sourceMappingURL=test-utils.d.ts.map