import React from 'react'; import type { Props } from 'tippy.js'; import type { TooltipProps, TooltipInstance } from '../Tooltip/Tooltip'; export interface PopoverProps extends TooltipProps { title?: string; width?: number; contentClassName?: string; } export declare type PopoverInstance = TooltipInstance; export declare function Popover({ title, children, maxWidth, width, interactive, content, contentClassName, ...rest }: PopoverProps): React.JSX.Element; export declare namespace Popover { var displayName: string; } //# sourceMappingURL=Popover.d.ts.map