import * as React from 'react'; import { DatePickerProps } from './type'; export interface PopupDatePickerProps extends DatePickerProps { onChange?: (data: any) => void; onOk?: (data: any) => void; onCancel?: () => void; show?: boolean; title?: string; } declare class PopupDatePicker extends React.Component { static defaultProps: { mode: string; prefixCls: string; pickerPrefixCls: string; minuteStep: number; use12Hours: boolean; pickerValueProp: string; pickerValueChangeProp: string; title: string; className: string; }; scrollValue: HTMLDivElement; setScrollValue: (v: any) => void; onOk: (v: any) => void; render(): JSX.Element; } export default PopupDatePicker;