import { Plugin } from "rollup"; interface AutoInstallOptions { /** * 执行安装的bin * * @type {("npm" | "yarn")} * @memberof AutoInstallOptions */ bin?: "npm" | "yarn"; } export declare function autoInstallPlugin(optons?: AutoInstallOptions): Plugin; export {};