/** * Export Tool * Handles exporting project data from Vikunja * * @warning Memory Usage: The export functionality loads entire project hierarchies * into memory. For very large projects with thousands of tasks or deeply nested * child projects, this could consume significant memory. Consider implementing * pagination or streaming for production use with large datasets. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { AuthManager } from '../auth/AuthManager'; export declare function registerExportTool(server: McpServer, authManager: AuthManager): void; //# sourceMappingURL=export.d.ts.map