import { BaseCommand } from '@yarnpkg/cli'; import { Project, Report } from '@yarnpkg/core'; import { Usage } from 'clipanion'; export default class PluginImportCommand extends BaseCommand { static paths: string[][]; static usage: Usage; name: string; checksum: boolean; execute(): Promise<0 | 1>; } export declare function savePlugin(pluginSpec: string, pluginBuffer: Buffer, { checksum, project, report }: { checksum?: boolean; project: Project; report: Report; }): Promise;