import { ModifierKey, ObserverOptionsInternal } from '@jiotranslate/core-beta'; import { JioTranslateElement } from '../../types'; import { ElementStoreType } from './ElementStore'; type Props = { highlightKeys: ModifierKey[]; elementStore: ElementStoreType; onClick: (el: JioTranslateElement) => void; options: ObserverOptionsInternal; onPushTranslations: any; }; export declare function MouseEventHandler({ highlightKeys, elementStore, onClick, options, onPushTranslations, }: Props): Readonly<{ stop(): void; run(): void; }>; export {};