import React from 'react'; interface Props { callback: () => void; focusCb?: () => void; blurCb?: () => void; content: React.ReactNode; id: string; position: string; showQuestion?: boolean; theme: string; themeTooltip: string; themeWrapper?: string; title: string; width: number; showOnHover?: boolean; } declare const Tooltip2: ({ callback, focusCb, blurCb, content, id, position, showQuestion, showOnHover, theme, themeTooltip, themeWrapper, title, width, }: Props) => JSX.Element; export default Tooltip2;