import type { Router } from "./router.js"; export interface ExportSkillResponse { skill: string; agentId: string; blob: string; pasteInstructionsUrl: string; docsUrl?: string; } export declare function registerExportSkillRoutes(router: Router): void;