import { Command } from '@oclif/command'; export default class Run extends Command { static description: string; static examples: string[]; static args: { name: string; description: string; required: boolean; }[]; private templates; private botonicApiService; run(): Promise; selectBotName(): Promise<{}>; }