import { Command } from "commander"; import type { BundleDetail } from "@skills-hub-ai/shared"; interface SkillResult { slug: string; status: "installed" | "skipped" | "failed"; error?: string; } export declare function installBundle(bundleSlug: string, options: { target?: string; }): Promise<{ bundle: BundleDetail; results: SkillResult[]; }>; export declare const installBundleCommand: Command; export {}; //# sourceMappingURL=install-bundle.d.ts.map