import type { PopperProps } from '@mui/material'; import type { NodeSingular } from 'cytoscape'; import type { RefObject } from 'react'; export interface UseNodeElementResult { boundingBox: ReturnType | undefined; currentElement: PopperProps['anchorEl'] | null; ref: RefObject; } export declare const useNodeElement: (node?: NodeSingular) => UseNodeElementResult; //# sourceMappingURL=useNodeElement.d.ts.map