import { type Control, type FieldPath, type FieldValues } from "react-hook-form"; import { type DateRangePickerProps } from "@/components/calendar/date-range-picker"; import { type FormFieldShellProps } from "@/components/form/form-field-shell"; export type FormDateRangePickerProps = Omit & Pick & { control: Control; fromName: FieldPath; toName: FieldPath; emptyValue?: unknown; onValueChange?: (value: { from?: string; to?: string; }) => void; }; declare function FormDateRangePicker({ control, fromName, toName, label, description, required, className, emptyValue, onValueChange, ...props }: FormDateRangePickerProps): import("react").JSX.Element; export { FormDateRangePicker };