import type { Scope } from '../../types.js'; interface MarketplaceRef { marketplace: string; plugin: string; } /** Install one marketplace plugin into a scope. Exported so `sys setup` can * install the default plugin set through the same path `pkg plugin install` * uses — refresh the source, resolve the entry, link/clone, register. */ export declare function installFromMarketplace(ref: MarketplaceRef, scope: Scope): { name: string; scope: Scope; path: string; }; export declare const pluginInstall: import("../../core/command.js").LeafDef; export declare const pluginRemove: import("../../core/command.js").LeafDef; export declare const pluginEnable: import("../../core/command.js").LeafDef; export declare const pluginDisable: import("../../core/command.js").LeafDef; export declare const pluginUpdate: import("../../core/command.js").LeafDef; export {};