import { ChatModel, ChatType, ConversationContext } from '../interfaces';
import { EBApiOptions, ERNIEBotAPI } from '../llmapi';
import { PQueue } from '../vendors';

export interface ChatERNIEBotOptions extends EBApiOptions {
    concurrency?: number;
    interval?: number;
}
export declare class ChatERNIEBot implements ChatModel {
    name: string;
    human_name: string;
    input_type: ChatType[];
    protected api: ERNIEBotAPI;
    protected limiter: PQueue;
    constructor(options: ChatERNIEBotOptions);
    call(ctx: ConversationContext): Promise<void>;
}
