import { type SkillTarget, type SkillTargetSelection } from "./generate.js"; export interface SkillSyncTargetSummary { target: SkillTarget; installRoot: ".claude/skills" | ".codex/skills"; manifestPath: string; added: string[]; updated: string[]; unchanged: string[]; } export interface SkillSyncResult { projectDir: string; targets: SkillSyncTargetSummary[]; } export declare function syncSkillBundles(options?: { target?: SkillTargetSelection; projectDir?: string; }): SkillSyncResult; export declare function formatSkillSyncResult(result: SkillSyncResult, baseDir?: string): string; //# sourceMappingURL=sync.d.ts.map