import { ExtractState } from "../utils/createStateProvider"; import type { StoreApi } from "zustand/vanilla"; import { WorkflowState, WorkflowStateApi } from "../.."; /** * @author: yanxianliang * @date: 2025-07-24 09:36 * @modified:2025/7/24 09:36 by yanxianliang * @desc: 获取内置的状态 * * (selector: (state: ExtractState) => U): U; * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ export declare function useSelector(selector: (state: ExtractState>) => U): U;