import React from 'react'; import type { RangePickerProps } from 'antd/es/date-picker'; import { Control, ControllerRenderProps } from 'react-hook-form'; export interface RangeDatePickerProps extends Pick { control: Control; render?: (field: ControllerRenderProps) => React.ReactElement; dateFormat: string; startDefaultValue?: string; endDefaultValue?: string; } declare const RangeDatePicker: React.FC; export default RangeDatePicker;