import { Dependencies } from "../dependencies"; import { Command } from "./command"; export interface AssistOptions { statusServerPort?: number; format?: boolean; coverage?: boolean; projects?: string[]; testConfig?: string; testsGlob?: string; } export declare function createAssistCommand(deps: Dependencies): Command;