import { InputProps } from '@mui/material/Input'; import { TextFieldProps } from '@mui/material/TextField'; export type UploadFieldProps = Omit & { name?: string; buttonText?: string; accept?: string[] | string | null; files?: []; multiple?: boolean; onChange?: (file?: File | null) => void; inProgress?: boolean; InputProps?: Partial; nativeInputProps?: object; placeholder?: string | React.ReactNode; }; declare const UploadField: (props: UploadFieldProps) => JSX.Element; export default UploadField;