import { IFileUploadSchema, IFileUploadValidationRule, IFileUploadValue } from "./types"; interface IProps { compressImages: boolean; fileTypeRule: IFileUploadValidationRule; fileExtensionRule: IFileUploadValidationRule; hideThumbnail?: boolean | undefined; id: string; maxFileSizeRule: IFileUploadValidationRule; upload: IFileUploadSchema["uploadOnAddingFile"]; uploadRule: IFileUploadValidationRule; value: IFileUploadValue[]; } declare const FileUploadManager: (props: IProps) => any; export default FileUploadManager;