import type { LexiconPlugin } from "../../../lexicon.js"; /** * Search tool definition for MCP */ export declare const searchTool: { name: string; description: string; inputSchema: { type: "object"; properties: { query: { type: string; description: string; }; lexicon: { type: string; description: string; }; limit: { type: string; description: string; }; }; required: string[]; }; }; /** * Create a search handler with access to loaded plugins */ export declare function createSearchHandler(plugins: LexiconPlugin[]): (params: Record) => Promise; //# sourceMappingURL=search.d.ts.map