import React, {Component} from 'react'; export interface IPopupPickerProps { picker?: any; value?: any; triggerType?: string; WrapComponent?: any; dismissText?: string | React.ReactElement; // React.ReactElement only for web okText?: string | React.ReactElement; // React.ReactElement only for web title?: string | React.ReactElement; // React.ReactElement only for web visible?: boolean; disabled?: boolean; onOk?: (...argument) => void; style?: any; onVisibleChange?: (visible: boolean) => void; content?: React.ReactElement | string; onDismiss?: () => void; /** react-native only */ styles?: any; /** react-native only */ actionTextUnderlayColor?: string; /** react-native only */ actionTextActiveOpacity?: number; /** web only */ wrapStyle?: React.CSSProperties; /** web only */ prefixCls?: string; className?: string; pickerValueProp?: string; pickerValueChangeProp?: string; /** web only */ transitionName?: string; /** web only */ maskTransitionName?: string; popupTransitionName?; }