import { flags } from '@oclif/command'; import BaseLegacyCommand from '../base-legacy-command'; export default class Invoke extends BaseLegacyCommand { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; path: flags.IOptionFlag; }; static args: { name: string; required: boolean; }[]; run(): Promise; }