import React from 'react'; import { InputProps as BaseInputProps } from 'antd/lib/input'; import { Control, UseFormResetField } from 'react-hook-form'; export interface UploadProps extends Pick { className?: string; errorMsg?: string; control: Control; name: string; resetField: UseFormResetField; size: string; label: string; fileSize?: number; full?: boolean; warningMsg?: string; small?: boolean; btnClass?: string; btnText?: string; defaultValue?: string; cy?: { upload?: string; message?: string; cancel?: string; }; } declare const Upload: React.FC; export default Upload;