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