import type { ToolDef } from "../../providers/types.js"; /** * Tool schema definitions using the provider-agnostic ToolDef type. * Each schema describes a tool that can be passed to any LLM provider * via the appropriate adapter. */ export declare const bashTool: ToolDef; export declare const readFileTool: ToolDef; export declare const writeFileTool: ToolDef; export declare const editFileTool: ToolDef; export declare const globTool: ToolDef; export declare const grepTool: ToolDef; /** All available tool schemas, keyed by tool name. */ export declare const TOOL_SCHEMAS: Record; //# sourceMappingURL=schemas.d.ts.map