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