/** * `supen skills` — Manage OpenSupen-compatible skills. * * Communicates with the daemon over HTTP instead of importing daemon code directly. */ import { Command } from 'commander'; interface SkillInstallOptions { path?: string; ref?: string; trust?: boolean; } export declare function resolveSkillInstallTarget(target: string, options?: SkillInstallOptions): string; export declare function registerSkillsCommand(program: Command): void; export {};