#!/usr/bin/env node /** * SolidWorks MCP Server - Enhanced Architecture * Provides comprehensive SolidWorks automation with macro recording, * design tables, SQL integration, VBA generation, and PDM configuration */ declare class SolidWorksMCPServer { private server; private api; private stateStore; private macroRecorder; private cacheManager; private config; constructor(); /** * Register resource types */ private registerResources; /** * Setup request handlers */ private setupHandlers; /** * Setup macro action handlers */ private setupMacroHandlers; /** * Initialize and start the server */ start(): Promise; /** * Shutdown the server */ shutdown(): Promise; } export { SolidWorksMCPServer }; //# sourceMappingURL=index.d.ts.map