/// import { UseControllerProps } from "react-hook-form"; type Props = { placeholder?: string; uploadAsset?: Function; }; declare const File: (props: Props & UseControllerProps) => JSX.Element; export default File;