import { Formatter } from '../code-style/formatter';
import { Linter } from '../code-style/linter';
export interface FixCommandDependencies {
    formatter: Formatter;
    linter: Linter;
}
export declare let createFixCommand: (deps: FixCommandDependencies) => {
    execute: () => Promise<boolean>;
};
