import React from 'react'; import type { IPopoverProps } from '@blueprintjs/core'; export interface PopoverProps extends IPopoverProps { /** If true, render BPopover in dark background and light font color */ isDark?: boolean; /** Popover target element */ children?: React.ReactNode; /** data-tooltip-id to be attached and used by docs team */ dataTooltipId?: string; } export declare function Popover(props: PopoverProps): React.ReactElement;