/** * @author: yanxianliang * @date: 2025-07-19 19:55 * @modified:2025/7/19 19:55 by yanxianliang * @desc: 设置运行/调试 状态 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { WorkflowRunState } from "../../.."; /** * Retrieves the setDebugStore function from the zustand store within the DebugContext. * This function is intended to be used for setting the debug state in a React application. * If the DebugContext provider is missing, it will log an error and throw an exception. * * @throws {Error} Throws an error if the DebugContext provider is not found. */ export declare const useSetRunState: () => (runState: Partial) => void;