You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
427 B
10 lines
427 B
import * as React from 'react';
|
|
import { AbstractTooltipProps } from '../tooltip';
|
|
import { RenderFunction } from '../_util/getRenderPropValue';
|
|
export interface PopoverProps extends AbstractTooltipProps {
|
|
title?: React.ReactNode | RenderFunction;
|
|
content?: React.ReactNode | RenderFunction;
|
|
}
|
|
declare const Popover: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<unknown>>;
|
|
export default Popover;
|