export interface RemovePackagesOptions {
    all?: boolean;
    retreat?: boolean;
    workingDir: string;
}
export declare const removePackages: (packages: string[], options: RemovePackagesOptions) => Promise<void>;
