export interface InstallOptions { workspace?: string; force?: boolean; silent?: boolean; } /** Install bundled skills to Kiro's skills directory */ export declare function installSkills(options?: InstallOptions): Promise<{ installed: string[]; skipped: string[]; failed: string[]; }>; //# sourceMappingURL=installer.d.ts.map