import { WebSocketStreamOptions } from "../../utils/iflytek_websocket_stream.cjs";
import { BaseChatIflytekXinghuo } from "./common.cjs";

//#region src/chat_models/iflytek_xinghuo/web.d.ts
/**
 * @example
 * ```typescript
 * const model = new ChatIflytekXinghuo();
 * const response = await model.invoke([new HumanMessage("Nice to meet you!")]);
 * console.log(response);
 * ```
 */
declare class ChatIflytekXinghuo extends BaseChatIflytekXinghuo {
  openWebSocketStream<WebSocketStream>(options: WebSocketStreamOptions): Promise<WebSocketStream>;
}
//#endregion
export { ChatIflytekXinghuo };
//# sourceMappingURL=web.d.cts.map