import type { InstalledPlugin } from "./types"; export declare function installPlugin(packageName: string): Promise; export declare function uninstallPlugin(name: string): Promise; export declare function listPlugins(): Promise; export declare function linkPlugin(localPath: string): Promise;