import type { PapershelfPaths } from '../types.js'; export type ScaffoldSkillOptions = { paths: PapershelfPaths; force?: boolean; }; export type ScaffoldSkillResult = { installedPath: string; status: 'created' | 'refreshed' | 'unchanged' | 'conflict'; }; export declare function scaffoldSkill(options: ScaffoldSkillOptions): Promise;