import { Command, flags } from '@oclif/command'; export default class Run extends Command { static description: string; static examples: never[]; static flags: { path: flags.IOptionFlag; }; static args: never[]; private botonicApiService; run(): Promise; }