import { AgentFunction, AgentFunctionInfo, DefaultConfigData } from "graphai"; import { type TavilySearchResponse } from "@tavily/core"; type TavilySearchInputs = { query: string; }; type TavilySearchParams = { apiKey?: string; max_results?: number; search_depth?: "basic" | "advanced"; include_answer?: boolean; include_raw_content?: boolean | "markdown" | "text"; }; export declare const tavilySearchAgent: AgentFunction; declare const tavilySearchAgentInfo: AgentFunctionInfo; export default tavilySearchAgentInfo;