import { type FieldValues, type UseControllerProps } from "react-hook-form";
import { type DatePickerType, type DatePickerInputProps as $DatePickerInputProps } from "@mantine/dates";
export type DatePickerInputProps<T extends FieldValues> = UseControllerProps<T> & Omit<$DatePickerInputProps<DatePickerType>, "value" | "defaultValue">;
export declare function DatePickerInput<T extends FieldValues>({ name, control, defaultValue, rules, shouldUnregister, onChange, ...props }: DatePickerInputProps<T>): import("react/jsx-runtime").JSX.Element;
