import { type Rule, type TaskId } from '@angular-devkit/schematics';
import { LinterOptions } from '../../tasks/index';
interface ApplyEslintFixOption extends LinterOptions {
    /** List of task to wait to run the linter */
    dependencyTaskIds?: TaskId[];
}
/**
 * Apply EsLint fix
 * @param _prootPath Root path
 * @param extension List of file extensions to lint
 * @param options Linter options
 */
export declare function applyEsLintFix(_prootPath?: string, extension?: string[], options?: ApplyEslintFixOption): Rule;
export {};
//# sourceMappingURL=index.d.ts.map