import { Plugin } from 'rollup'; import { Options } from '../../types'; export declare type PluginFactory = (opts: any) => Plugin; export declare type GetPlugin = (name: string) => Promise; export declare function getPlugin(name: string, opts: Options): Promise; interface LocalRequireOptions { cwd: string; silent?: boolean; } export declare function localRequire(name: string, opts: LocalRequireOptions): any; export {};