import React from 'react'; import { Testable } from '../../modules/test-ids'; export declare type TriggerValue = 'mouseenter' | 'focus' | 'click'; export declare type Props = Pick, 'className' | 'children'> & Testable & { target: React.ReactNode; }; export declare const Component: { (props: Props): JSX.Element; displayName: string; };