import { Emitter } from './interfaces'; export interface PruneOptions { cwd: string; production?: boolean; emitter?: Emitter; } export declare function prune(options: PruneOptions): Promise; export declare function rmDependency(options: { name: string; global: boolean; path: string; emitter: Emitter; }): Promise;