import { CommandService } from './CommandService';
export default class LintService {
    cwd: string;
    private getCommand;
    static ignorePatterns: string[];
    private static isLintingEnabled;
    static disableLinting(): void;
    static enableLinting(): void;
    static shouldIgnorePattern(pattern: string): boolean;
    constructor(cwd: string, commandServiceFactory: () => CommandService);
    fix: (pattern: string) => Promise<string[]>;
}
