import { Command, flags } from '@oclif/command'; export default class GetResults extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; mythxEthAddress: flags.IOptionFlag; mythxPassword: flags.IOptionFlag; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise; }