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