import { Dependencies } from "../dependencies";
import { AssistOptions } from "./assist";
import { Command } from "./command";
export interface PrePushCommandOptions extends Pick<AssistOptions, "testConfig" | "testsGlob"> {
    disabledProjects?: string[];
}
export declare function createPrePushCommand(deps: Dependencies): Command<PrePushCommandOptions>;
