import type { IInteractionManagerProps } from '.'; import type { GraphNodeId, IGraphNodeActions } from '@adam-sv/arc'; import { IGraphSelection } from '../types'; export declare function useInteractionManagerLogic({ graphProps }: IInteractionManagerProps): { graphSelection: IGraphSelection; nodeActions: IGraphNodeActions; selectionActions: import("@adam-sv/arc").IGraphSelectionActions | undefined; selectedNodeIds: Set | undefined; selectedEdges: Set> | undefined; }; export type IInteractionLogic = ReturnType>;