/**
 * Uninstall a package by name (supports aliases like 'node' -> 'nodejs.org')
 */
export declare function uninstall(arg: string): Promise<boolean>;
/**
 * Uninstall all packages and remove the entire installation
 */
export declare function uninstall_all(): Promise<void>;