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