import { Control, FieldErrors } from 'react-hook-form'; export type DatePickerProps = { name: string; control: Control; label: string; rules?: Record; required?: boolean; errors?: FieldErrors; helperText?: string; disablePast?: boolean; disableFuture?: boolean; };