/** * OMX Code Intelligence MCP Server * Provides LSP-like diagnostics, symbol search, and AST pattern matching. * Uses pragmatic CLI wrappers (tsc, ast-grep/sg) rather than full LSP protocol. */ interface AstGrepRunOptions { path?: string; maxResults?: number; context?: number; replacement?: string; dryRun?: boolean; } export declare function buildAstGrepRunArgs(pattern: string, language: string, options: AstGrepRunOptions): string[]; export {}; //# sourceMappingURL=code-intel-server.d.ts.map