import { Context } from 'react'; /** * @title: 使用状态管理器的自定义钩子函数 * @description: * @param {useMyContext} MyContext * @return {*} * @Author: zhiwei.Wang * @Date: 2023-07-05 10:23 */ declare const useSharedState: (MyContext: Context) => NonNullable; export default useSharedState;