import React from 'react'; export interface PopoverBodyProps { dismissButton: boolean; dismissAriaLabel: string | undefined; onDismiss: (() => void) | undefined; header: React.ReactNode | undefined; children: React.ReactNode; variant?: 'annotation' | 'chart'; overflowVisible?: 'content' | 'both'; className?: string; ariaLabelledby?: string; closeAnalyticsAction?: string; } export default function PopoverBody({ dismissButton: showDismissButton, dismissAriaLabel, header, children, onDismiss, variant, overflowVisible, className, ariaLabelledby, closeAnalyticsAction }: PopoverBodyProps): JSX.Element;