/// import { ISinglePanelProps, IDisabledTime, IShowTime } from '../../types'; export interface IDatePickerPanelProps extends ISinglePanelProps { disableRangeOverView?: boolean; popText?: string; hideFooter?: boolean; showTime?: IShowTime; disabledTime?: IDisabledTime; footerText?: string; combinedLeft?: boolean; combinedRight?: boolean; onPanelDateChange?: (val: Date) => void; } declare const DatePickerPanel: React.FC; export default DatePickerPanel;