import * as oclif from "@oclif/command"; export default class Install extends oclif.Command { static description: string; static args: { name: string; description: string; required: boolean; }[]; private octokit; run(): Promise; /** * Returns false if the module has already been installed. */ private install; private fetchMetadata; private loadOctokit; }