import { flags } from '@oclif/command'; import { CLICommand } from '../command'; export default class Test extends CLICommand { static description: string; static flags: { ip: flags.IOptionFlag; port: import("@oclif/parser/lib/flags").IOptionFlag; }; static args: { name: string; required: boolean; description: string; default: undefined; }[]; run(): Promise; private logSourceTestReponse; private getSourceIdsToTest; }