/** * Import tool definition for MCP */ export declare const importTool: { name: string; description: string; inputSchema: { type: "object"; properties: { source: { type: string; description: string; }; output: { type: string; description: string; }; }; required: string[]; }; }; /** * Handle import tool invocation */ export declare function handleImport(params: Record): Promise; //# sourceMappingURL=import.d.ts.map