import * as React from 'react'; import tsPropsType from './PropsType'; export default class Popover extends React.Component { static propTypes: { children: React.Requireable; }; static defaultProps: { onSelect: () => void; }; static Item: any; render(): JSX.Element; }