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