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