import { createContext } from "react"; type DeleteNodeCallback = (id: string) => void; const DeleteNodeCallbackContext = createContext( undefined, ); export { DeleteNodeCallbackContext };