/** * A custom hook that retrieves the debug state for a specific node. * It uses the `useNodeId` hook to get the node ID and the `DebugContext` context to access the debug store. * If the `DebugContext` provider is missing, it throws an error. * */ export declare const useNodeRunningState: (nodeId?: string) => import("../../..").NodeRunState | undefined;