///
import React, { Component } from 'react';
import { IPopupPickerProps } from './PopupPickerTypes';
export default class PopupPicker extends Component {
static defaultProps: {
prefixCls: string;
triggerType: string;
WrapComponent: string;
};
state: {
pickerValue: any;
visible: boolean;
};
componentWillReceiveProps(nextProps: any): void;
onPickerChange(pickerValue: any): void;
picker: any;
saveRef(picker: any): void;
setVisibleState(visible: any): void;
fireVisibleChange(visible: any): void;
getRender(): JSX.Element;
onTriggerClick(e: any): void;
onOk(): void;
getContent(): string | React.ReactElement;
onDismiss(): void;
hide(): void;
getModal(): JSX.Element;
render(): JSX.Element;
}