/** * Asset copy functions: skills, commands, agents. */ import type { InitOptions, InitResult } from './types.js'; /** * Copy skills from source */ export declare function copySkills(targetDir: string, options: InitOptions, result: InitResult): Promise; /** * Copy commands from source */ export declare function copyCommands(targetDir: string, options: InitOptions, result: InitResult): Promise; /** * Copy agents from source */ export declare function copyAgents(targetDir: string, options: InitOptions, result: InitResult): Promise; //# sourceMappingURL=copy-assets.d.ts.map