export declare const AST_SEARCH_TOOL_NAME: "astSearch"; export declare const AST_REWRITE_TOOL_NAME: "astRewrite"; export declare const LOCAL_SEARCH_TOOL_NAME = "localSearch"; export declare const GITHUB_SEARCH_TOOL_NAME: "ghSearch"; export declare const GITHUB_SEARCH_HISTORY_TOOL_NAME = "ghSearchHistory"; export declare const GITHUB_GET_HISTORY_ITEM_TOOL_NAME = "ghGetHistoryItem"; export declare const STATIC_TOOL_NAMES: { readonly GITHUB_SEARCH: "ghSearch"; readonly GITHUB_FETCH_CONTENT: "ghGetFileContent"; readonly PACKAGE_SEARCH: "artifactSearch"; readonly GITHUB_CLONE_REPO: "ghCloneRepo"; readonly LOCAL_FETCH_CONTENT: "localFetch"; readonly AST_SEARCH: "astSearch"; readonly AST_REWRITE: "astRewrite"; readonly LSP_SEARCH: "lspSearch"; readonly GITHUB_SEARCH_HISTORY: "ghSearchHistory"; readonly GITHUB_GET_HISTORY_ITEM: "ghGetHistoryItem"; readonly JEV_REASONING: "jevReasoning"; readonly JEV_SCOUT: "jevScout"; }; export declare const LSP_SEARCH_TOOL_NAME: "lspSearch"; export declare function isLocalTool(toolName: string): boolean; export type ToolName = (typeof STATIC_TOOL_NAMES)[keyof typeof STATIC_TOOL_NAMES];