export declare type FileType = 'file' | 'image'; interface UploadOptions { fileType?: FileType; mime?: string; autoId?: boolean; } declare const uploadImage: (serverUrl: string, apiKey: string, imageId: string | null, file: string | Blob, uploadOptions?: UploadOptions | undefined) => Promise; export default uploadImage;