/// import React from 'react'; import { IPopupPickerProps } from './PopupPickerTypes'; export default function PopupMixin(getModal: any, platformProps: any): { new (props: any): { picker: any; componentWillReceiveProps(nextProps: any): void; onPickerChange: (pickerValue: any) => void; saveRef: (picker: any) => void; setVisibleState(visible: any): void; fireVisibleChange(visible: any): void; getRender(): any; onTriggerClick: (e: any) => void; onOk: () => void; getContent: () => string | React.ReactElement | undefined; onDismiss: () => void; hide: () => void; render(): any; setState(state: any, callback?: (() => any) | undefined): void; forceUpdate(callBack?: (() => any) | undefined): void; props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly; context: any; refs: { [key: string]: React.ReactInstance; }; }; defaultProps: any; };