import * as React from "react"; interface OnChangeActionArgType { file: File; reader: FileReader; } export interface Props { className?: string; disabled?: boolean; errors?: string[]; helperText?: string; id: string; inputRef?: any; label: string; name?: string; loading?: boolean; onChangeAction?: (obj: OnChangeActionArgType) => void; required?: boolean; nativeRequired?: boolean; variant?: "solid" | "outlined" | "text"; withForm?: boolean; } declare const FileUpload: React.FC; export default FileUpload;