export interface DisableOptions { /** Settings scope. Defaults to "user" — matches `claude plugin uninstall` default. */ scope?: "user" | "project"; dryRun?: boolean; verbose?: boolean; json?: boolean; } export declare function disableCommand(skillName: string, opts: DisableOptions): Promise;