import { $Project } from "@wuapi/essential";
import { BasePlugin, PluginDescription } from "./plugin_base";
/**
 * Generate a json repository.
 */
export default class RepositoryPlugin extends BasePlugin {
    /**
     * Returns the description of this plugin.
     */
    getDescription(): PluginDescription;
    process(project: $Project, outputDir: string, args: {
        [key: string]: string;
    }): void;
}
