import { Chat } from "../../types/Chat"; import { Message } from "../../types/Message"; export declare const getChats: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; } | undefined) => () => Promise; export declare const createChat: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; body?: Record | undefined; } | undefined) => Promise; export declare const sendMessage: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; body?: Record | undefined; } | undefined) => Promise; export declare const getChatMessages: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; } | undefined) => () => Promise; export declare const promptByCompany: (baseUrl: string, accessToken: string | undefined, options?: { params?: Record | undefined; } | undefined) => () => Promise;