/** * Constants for Default Tools * * Tool name constants and utility arrays. */ import type { DefaultToolName } from "./types"; /** * Constants for default tool names */ export declare const DefaultToolNames: { readonly READ_FILES: "read_files"; readonly SEARCH_CODEBASE: "search_codebase"; readonly RUN_COMMANDS: "run_commands"; readonly FETCH_WEB_CONTENT: "fetch_web_content"; readonly APPLY_PATCH: "apply_patch"; readonly EDITOR: "editor"; readonly SKILLS: "skills"; readonly ASK: "ask_question"; readonly SUBMIT_AND_EXIT: "submit_and_exit"; }; /** * Array of all default tool names */ export declare const ALL_DEFAULT_TOOL_NAMES: DefaultToolName[];