export interface EnableOptions { /** Settings scope. Defaults to "user" — matches `claude plugin install` default. */ scope?: "user" | "project"; /** Print the would-be invocation without running it. */ dryRun?: boolean; /** Verbose output (resolved paths, claude binary, exit code). */ verbose?: boolean; /** Emit machine-readable JSON instead of human-readable lines. */ json?: boolean; } export declare function enableCommand(skillName: string, opts: EnableOptions): Promise;