export interface RemoveOptions { pluginsDir?: string; indexPath?: string; } export interface RemoveResult { name: string; removedDir: boolean; removedIndexEntry: boolean; } export declare function removePlugin(name: string, opts?: RemoveOptions): RemoveResult;