/** * HTTP Tool Factory * * Creates ToolDefinition instances from HTTP configuration. * Enables declarative API integration without writing code. */ import type { AiSdkTool } from './Tool.js'; import type { HttpToolConfig, HttpToolResult } from './http.types.js'; /** * Create a tool that makes HTTP requests based on config. * The tool will substitute path params, build query/body, and execute the request. */ export declare function createHttpTool(config: HttpToolConfig): AiSdkTool;