import React from 'react'; import type { IGraphCommandService, IModelService } from '@antv/xflow-core'; import type { PropsProxy } from './config'; interface IContext { propsProxy: PropsProxy; commandService: IGraphCommandService; modelService: IModelService; } export declare const PanelContext: React.Context>; export declare const usePanelContext: () => IContext; export {};