import { ForwardRefExoticComponent, RefAttributes } from 'react'; import { FRCDatePickerProps } from './datePicker'; import FRCRangePicker from './rangePicker'; import { PickerRef } from './interface'; export type { FRCDatePickerProps, PickerRef }; export type { FRCRangePickerProps } from './rangePicker'; export type FRCDatePickerComponent = ForwardRefExoticComponent> & { RangePicker: typeof FRCRangePicker; }; declare const TransDatePicker: FRCDatePickerComponent; export default TransDatePicker;