import React from "react"; interface UploaderProps { fileTypes?: any[]; fileCount?: number; onFilesChange?: (files: any[]) => void; onUploadCompleted?: (files: any[]) => void; className?: string; disabled?: boolean; id?: any; inputFileSize?: number; startUpload?: number; batchId: string; documentTypeId?: string; files?: any; listOnly?: boolean; imageOnly?: boolean; postExecuteParam?: string; listView?: string; documentAPI: string; placeholder?: string; buttonText?: string; imageToUpload?: any; index?: any; onClearFiles?: any; onClose?: (event: any) => void; fileRemoved?: (files: any[]) => void; imageHeight?: number; imageWidth?: number; fileView?: boolean; fileDownload?: boolean; handleFileError?: (error: string) => void; showErrorMessage?: boolean; showDownloadProgress?: any; clientId?: string; allowMultipleSelection?: boolean; postBody?: any; param?: any; } export declare const Uploader: React.FC; export {};