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