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