import BaseLegacyCommand from '../base-legacy-command'; declare const noOpen = "no-open"; declare const noInstall = "no-install"; declare const noWatcher = "no-watcher"; export default class Start extends BaseLegacyCommand { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; force: import("@oclif/parser/lib/flags").IBooleanFlag; [noOpen]: import("@oclif/parser/lib/flags").IBooleanFlag; [noInstall]: import("@oclif/parser/lib/flags").IBooleanFlag; [noWatcher]: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: never[]; run(): Promise; } export {};