import type { SvelteFlowStore } from '../../store/types'; import type { Node, Edge, KeyDefinition } from '../../types'; export type KeyHandlerProps = { store: SvelteFlowStore; selectionKey?: KeyDefinition | KeyDefinition[] | null; multiSelectionKey?: KeyDefinition | KeyDefinition[] | null; deleteKey?: KeyDefinition | KeyDefinition[] | null; panActivationKey?: KeyDefinition | KeyDefinition[] | null; zoomActivationKey?: KeyDefinition | KeyDefinition[] | null; };