import { type Control, type FieldPath, type FieldValues } from "react-hook-form"; import { type DatePickerProps } from "@/components/calendar/date-picker"; import { type FormFieldShellProps } from "@/components/form/form-field-shell"; export type FormDatePickerProps = FieldPath> = Omit & Pick & { control: Control; name: TName; fieldClassName?: string; emptyValue?: unknown; onValueChange?: (value: string) => void; }; declare function FormDatePicker = FieldPath>({ control, name, label, description, required, className, fieldClassName, emptyValue, onValueChange, ...props }: FormDatePickerProps): import("react").JSX.Element; export { FormDatePicker };