/// export declare type Props = { tooltipItemId: string; titleText: string; bodyText: any; buttonText?: string; onTop?: boolean; onBottom?: boolean; onRight?: boolean; imgSrc?: string; onClick: () => void; onClose: () => void; }; declare const TooltipBig: ({ tooltipItemId, titleText, bodyText, imgSrc, onBottom, onRight, buttonText, onClick, onClose, }: Props) => JSX.Element; export default TooltipBig;