import type NVL from '@neo4j-nvl/base'; import type { MutableRefObject } from 'react'; import type { InteractionOptions, KeyboardEventCallbacks, MouseEventCallbacks } from './types'; interface InteractionHandlersProps { nvlRef: MutableRefObject; mouseEventCallbacks: MouseEventCallbacks; keyboardEventCallbacks: KeyboardEventCallbacks; interactionOptions: InteractionOptions; } export declare const InteractionHandlers: React.FC; export {};