import React from 'react'; interface UploadFileInputProps { style?: any; title?: string; defaultValue?: string | any; onUpload?: (file?: any) => void; returnBase64String?: boolean; required?: boolean; readonly?: boolean; documentTypesAllowed?: 'images' | 'pdf' | 'allFiles'; canDeleteFile?: boolean; displayPreview?: boolean; maxSize?: number; canTakePicture?: boolean; getFileName?: (extension: string, dateTime: string) => string; manageFileLocally?: boolean; } declare const UploadFileInput: ({ style, title, defaultValue, onUpload, returnBase64String, required, readonly, documentTypesAllowed, canDeleteFile, displayPreview, maxSize, canTakePicture, getFileName, manageFileLocally, }: UploadFileInputProps) => React.JSX.Element; export default UploadFileInput;