import { Command } from '@oclif/core'; export default class Invoke extends Command { static description: string; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag; local: import("@oclif/core/lib/interfaces").BooleanFlag; }; static strict: boolean; static args: { name: string; }[]; static examples: string[]; private invokeController; /** * Runs the invoke command and parses the passed function and flag * @returns {Promise} - invoke command * @memberof Invoke */ run(): Promise; }