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: any; export declare const usePanelContext: () => IContext; export {};