import type { IndexCode } from "../../indexer/index-code.js"; export declare const lookupTool: { name: string; description: string; inputSchema: { type: "object"; properties: { symbol: { type: string; description: string; }; repo: { type: string; description: string; }; type: { type: string; enum: string[]; description: string; }; token_budget: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleLookup(indexer: IndexCode, args: Record): Promise;