UNPKG

427 BTypeScriptView Raw
1import * as React from 'react';
2import { AbstractTooltipProps } from '../tooltip';
3import { RenderFunction } from '../_util/getRenderPropValue';
4export interface PopoverProps extends AbstractTooltipProps {
5 title?: React.ReactNode | RenderFunction;
6 content?: React.ReactNode | RenderFunction;
7}
8declare const Popover: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<unknown>>;
9export default Popover;