import { HttpTransport } from '../_http'; import { RequestOptions } from '../base'; import { ChatSession, ChatSessionListParams, ChatSessionListResponse, ChatTurn, CreateChatSessionRequest, GetChatSessionParams, SendChatMessageRequest, SendChatMessageResponse } from '../../models'; export declare function createSession(http: HttpTransport, data: CreateChatSessionRequest, options?: RequestOptions): Promise; export declare function getSessions(http: HttpTransport, params?: ChatSessionListParams, options?: RequestOptions): Promise; export declare function getSession(http: HttpTransport, sessionId: string, params?: GetChatSessionParams, options?: RequestOptions): Promise; export declare function sendMessage(http: HttpTransport, sessionId: string, data: SendChatMessageRequest, options?: RequestOptions): Promise; export declare function getTurn(http: HttpTransport, sessionId: string, turnId: string, options?: RequestOptions): Promise; //# sourceMappingURL=chat.d.ts.map