import { ComponentProps } from 'react'; type Props = { error?: string; label: string; } & ComponentProps<'input'>; declare const FileUpload: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export default FileUpload;