import { ChatOptions } from '../types.js'; interface SimpleMessage { role: 'user' | 'assistant' | 'system'; content: string; } declare const streamChatResponse: (credentials: any, messages: SimpleMessage[], options: ChatOptions, terminal?: any) => Promise; export { streamChatResponse };