/// import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { PopoverPropsType } from './PropsType'; export interface PopoverProps extends PopoverPropsType { style?: StyleProp; triggerStyle?: StyleProp; overlayStyle?: StyleProp; contextStyle?: StyleProp; renderOverlayComponent?: (values: any) => JSX.Element; name?: string; } export default class Popover extends React.Component { static defaultProps: { onSelect: () => void; }; static Item: any; menuContextRef: any; render(): JSX.Element; }