import { Command } from '@oclif/command'; export default class Run extends Command { static description: string; static examples: string[]; static args: { name: string; }[]; private botonicApiService; run(): Promise; signupFlow(): Promise; askEmailPassword(): Promise<{}>; askLogin(): Promise; askSignup(): Promise; deployBotFlow(): Promise; login(email: string, password: string): Promise; signup(email: string, password: string): Promise; newBotFlow(): Promise; createNewBot(): Promise; selectExistentBot(bots: any[]): Promise; displayProviders(providers: any): Promise; deploy(): Promise; }