import React from "react"; import type { NodeProps } from "reaflow"; import type { NodeData } from "../types"; type CustomNodeProps = NodeProps & { onNodeClick?: (node: NodeData) => void; }; export declare const CustomNode: React.MemoExoticComponent<({ onNodeClick, ...nodeProps }: CustomNodeProps) => import("react/jsx-runtime").JSX.Element>; export {}; //# sourceMappingURL=CustomNode.d.ts.map