import { FunctionComponent } from 'react'; import { DatePickerProps } from './DatePicker'; import DateRangePicker from './DateRangePicker'; import MonthPicker from './MonthPicker'; import WeekPicker from './WeekPicker'; interface CompoundDatePickerProps extends FunctionComponent { Month: typeof MonthPicker; Range: typeof DateRangePicker; Week: typeof WeekPicker; } declare const CompoundDatePicker: CompoundDatePickerProps; export default CompoundDatePicker;