import { Base } from "../base"; import { Model, ChatRequest, ChatResponse } from "./types"; export declare class ChatGPT3 extends Base { getModels(): Promise; getModelByName(name: string): Promise; createChatCompletion(newChat: ChatRequest): Promise; }