import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexCode } from "../../indexer/index-code.js"; import type { IndexGraph } from "../../indexer/index-graph.js"; import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const auditTool: { name: string; description: string; inputSchema: { type: "object"; properties: { token_budget: { type: string; description: string; }; }; }; }; export declare function handleAudit(indexer: IndexFiles & IndexCode & IndexGraph & IndexMemory, args: Record): string;