import type { ChatEngineParamsNonStreaming, ChatEngineParamsStreaming, EngineResponse } from "../index.edge.js"; import { LLMAgent, LLMAgentWorker, type LLMAgentParams } from "./llm.js"; export type AnthropicAgentParams = LLMAgentParams; export declare class AnthropicAgentWorker extends LLMAgentWorker { } export declare class AnthropicAgent extends LLMAgent { constructor(params: AnthropicAgentParams); chat(params: ChatEngineParamsNonStreaming): Promise; chat(params: ChatEngineParamsStreaming): Promise; }