import { FC } from "react"; declare type Props = { currFile: File[] | File | null; uploaded: boolean; typeError: boolean; disabled: boolean | undefined; label: string | undefined; maxSize?: number; types?: string[]; }; declare const Description: FC; export default Description;