import { Formatter } from "../code-style/formatter";
import { Linter } from "../code-style/linter";
import { Git } from "../git";
import { Command } from "./command";
export interface FixCommandDependencies {
    formatter: Formatter;
    linter: Linter;
    git: Git;
}
export declare function createFixCommand(deps: FixCommandDependencies): Command<void>;
