/** * `find_pattern` MCP tool (stretch). * * Runs a JavaScript regular expression over the text contents of files under * a code root and returns the matches with a line-based span and a snippet. * * NOTE: `span` is `[startLine, endLine]` (1-based, line-based — NOT character * offsets). Documented in README; adaptable to char offsets additively if a * consumer needs them. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export declare function registerFindPattern(server: McpServer): void; //# sourceMappingURL=find-pattern.d.ts.map