import React from 'react'; import type { Placement } from './Placement'; type onEnterType = (element: HTMLElement) => void; export interface IPopoverProps { value?: string; template?: JSX.Element; placement?: Placement; onEnter?: onEnterType; } export declare class Popover extends React.Component { static defaultProps: Partial; private onEntering; render(): JSX.Element; } export {};