/// import { LabelProps, SemanticShorthandItem } from 'semantic-ui-react'; export interface FileUploadProps { name: string; label?: string | JSX.Element | undefined; value: any; error: boolean | SemanticShorthandItem; onChange(e: FileList | null): void; } export default function FileUpload(props: FileUploadProps): JSX.Element;