import { ChatOptions } from '../types.cjs';

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

export { streamChatResponse };
