import { FileUploadProps } from '../../../../components'; import { FieldPath, FieldValues } from 'react-hook-form'; import { FileUploadApi } from './types'; import { FormFieldProps } from '../../../../types'; export type FormFileUploadProps = FieldPath> = FormFieldProps & Omit & { api?: FileUploadApi; }; export declare const FormFileUpload: = FieldPath>({ id: suppliedId, name, rules, errorMode, shouldUnregister, api, maxFileSize, maxFiles, acceptedFormats, maxTotalMBSize, acceptedFormatsText, legendText, ...muiProps }: FormFileUploadProps) => import("@emotion/react/jsx-runtime").JSX.Element;