import { FileInputProps } from "@mantine/core"; import { FieldValues, UseControllerProps } from "react-hook-form"; type Props = FileInputProps & { name: UseControllerProps["name"]; rules?: UseControllerProps["rules"]; defaultValue?: UseControllerProps["defaultValue"]; }; declare function RHFFileInput(props: Props): import("react/jsx-runtime").JSX.Element; export default RHFFileInput; export declare const createFileInputField: () => (props: Props) => import("react/jsx-runtime").JSX.Element;