import { UIMessage } from "ai"; import { Response } from "express"; import { AiService } from "./ai.service"; import { MongodbService } from "@builder6/core"; export declare class AiController { private readonly aiService; private readonly mongodbService; constructor(aiService: AiService, mongodbService: MongodbService); streamText(chatbotId: string, messages: UIMessage[], res: Response): Promise; chatStreamText(chatId: string, messages: UIMessage[], res: Response): Promise; getModels(): Promise; }