import { DocumentPickerResponse } from '@react-native-documents/picker'; export declare function fetchFileDetails({ listFiles }: { listFiles: any; }): Promise; export declare function uploadFile(file: DocumentPickerResponse, { baseUrl, jsessionId, token, returnBase64String }: { baseUrl: any; jsessionId: any; token: any; returnBase64String: any; }): Promise; export declare function uploadBase64(file: { base64: string; name: string; size: number; type: string; }, { baseUrl, jsessionId, token }: { baseUrl: any; jsessionId: any; token: any; }): Promise; export declare function deleteMetaFile(fileId: number): Promise;