import { Dependencies } from "../dependencies";
import { Command } from "./command";
export interface PreCommitCommandOptions {
    format?: boolean;
}
export declare function createPreCommitCommand(deps: Dependencies): Command<PreCommitCommandOptions>;
