declare class FileUploadOptions { private filePath?; private base64?; private fileObject?; private fileName?; private skyflowId?; constructor(); setFilePath(filePath: string): void; setBase64(base64: string): void; setFileObject(fileObject: File): void; setFileName(fileName: string): void; setSkyflowId(skyflowId: string): void; getFilePath(): string | undefined; getBase64(): string | undefined; getFileObject(): File | undefined; getFileName(): string | undefined; getSkyflowId(): string | undefined; } export default FileUploadOptions;