import { default as React } from 'react'; import { Control, FieldErrors } from 'react-hook-form'; export type DateRangePickerProps = { control: Control; startName: string; endName: string; labelStart: string; labelEnd: string; errors?: FieldErrors; separator?: string; required?: boolean; helperTextStart?: string; helperTextEnd?: string; disablePast?: boolean; disableFuture?: boolean; fullWidth?: boolean; }; declare const DateRangePickerComp: React.FC; export default DateRangePickerComp;