/**
 * SkillSmith Skill Generator
 *
 * Generates skills with platform-aware deployment.
 *
 * @module smiths/skillsmith/generator
 */
import type { SkillOptions, GeneratedSkill, SkillDeploymentResult, InteractivePrompts } from './types.js';
/**
 * Generate a skill from options
 */
export declare function generateSkill(options: SkillOptions): Promise<GeneratedSkill>;
/**
 * Deploy a generated skill to the target platform
 */
export declare function deploySkill(skill: GeneratedSkill, projectPath: string, dryRun?: boolean): Promise<SkillDeploymentResult>;
/**
 * Interactive skill design workflow
 */
export declare function interactiveSkillDesign(): Promise<InteractivePrompts>;
//# sourceMappingURL=generator.d.ts.map