import React from 'react'; import Tippy from '@tippy.js/react'; import 'tippy.js/dist/tippy.css'; import 'tippy.js/animations/shift-away.css'; import { Testable } from '../../modules/test-ids'; export declare type TriggerValue = 'mouseenter' | 'focus' | 'click'; export declare type Props = Pick, 'children'> & Pick, 'arrow' | 'className' | 'theme' | 'onShow' | 'onHide'> & Testable & { content: React.ReactNode; trigger: TriggerValue | TriggerValue[]; target: React.ReactNode; }; export declare const Component: { (props: Props): JSX.Element; displayName: string; defaultProps: Props; };