import React from 'react'; interface valueProps { type?: string | 'hour' | 'day' | 'month' | 'year' | 'custom' | 'quarter'; dateTime?: any[]; } interface DateTimeRangePicker { value?: valueProps; onChange?: (val: valueProps) => any; optionType?: string; options?: any[]; [k: string]: any; } declare const DateTimeRangePicker: React.ForwardRefExoticComponent & React.RefAttributes>; export default DateTimeRangePicker;