import { Message } from '../interface'; /** * Chat api * @param message */ export declare function streamChat(messages: Message[], apiDomain: string, apiUrl?: string, prompt?: string, token?: string): Promise; export declare function fetcher(url: string): Promise; export declare const uploadImage: (file: File, apiDomain: string) => Promise;