import type { PanelBaseConfig } from './config'; import type { IPosition } from '@antv/xflow-core'; import React from 'react'; interface IWorkspacePanelProps { config?: T; className?: string; position: IPosition; style?: React.CSSProperties; } declare const WorkspacePanel: React.FC; export { usePanelContext } from './context'; export { WorkspacePanel, IWorkspacePanelProps };