export interface ImportOptions { /** * Path to SKILL.md file to import */ skillPath: string; /** * Optional custom output path for agent.yaml * If not specified, will place agent.yaml in same directory as SKILL.md */ outputPath?: string; /** * Force overwrite if agent.yaml already exists * Default: false */ force?: boolean; } export interface ImportSuccess { success: true; agentPath: string; } export interface ImportError { success: false; error: string; } export type ImportResult = ImportSuccess | ImportError; /** * Import an Agent Skill (SKILL.md) and convert to VAT agent format (agent.yaml) * * @param options - Import options * @returns Result with agent.yaml path or error */ export declare function importSkillToAgent(options: ImportOptions): Promise; //# sourceMappingURL=import.d.ts.map