/** The skills this package ships, copied from `.agents/skills` at build time. */ export declare const SHIPPED_SKILLS: readonly ["creating-bunderstack-apps", "migrating-to-bunderstack"]; export type SkillsOptions = { /** Project root the skills are installed into. */ cwd: string; /** Destination, relative to `cwd`. */ directory?: string; /** Report drift instead of writing. Exits non-zero when anything differs. */ check?: boolean; }; export type SkillsIo = { stdout(message: string): void; stderr(message: string): void; }; export declare function installSkills(options: SkillsOptions, io: SkillsIo): Promise; //# sourceMappingURL=cli-skills.d.ts.map