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