export interface SkillMeta { name: string; version: string; description: string; icon?: string; tags: string[]; installed: boolean; } export declare function listSkills(skipServer?: boolean): Promise; export declare function listSkillsSync(): SkillMeta[]; export declare function searchSkills(query: string, skipServer?: boolean): Promise; export declare function installSkill(name: string, projectRoot?: string, skipServer?: boolean): Promise<{ name: string; version: string; templates: string[]; }>; export declare function uninstallSkill(name: string, projectRoot?: string, skipServer?: boolean): Promise; //# sourceMappingURL=skill.d.ts.map