import React from 'react'; import { ButtonProps } from '../button/interfaces'; import { PopoverProps } from './interfaces'; export interface PopoverBodyProps { size: PopoverProps.Size; fixedWidth: boolean; dismissButton: boolean; dismissAriaLabel: string | undefined; onDismiss: () => void; header: React.ReactNode | undefined; children: React.ReactNode; variant?: 'annotation'; returnFocus?: boolean; overflowVisible?: 'content' | 'both'; dismissButtonRef?: React.Ref; className?: string; } export default function PopoverBody({ size, fixedWidth, dismissButton: showDismissButton, dismissAriaLabel, header, children, onDismiss, variant, returnFocus, overflowVisible, dismissButtonRef, className, }: PopoverBodyProps): JSX.Element; //# sourceMappingURL=body.d.ts.map