import type { DSLNodeType } from '@lingxiteam/dsl'; import type { FC } from 'react'; import type { OpenDataSourcePanelParams } from '../../../interface'; import type { ParamterData } from '../../hooks/useParameter'; import type { FunctorItemType } from '../../interface'; import type { FunctorListViewProps } from '../FunctorListView'; import './index.less'; interface DirectoryTabsProps extends FunctorListViewProps { onInsertNode: (node: DSLNodeType) => void; onInsertParameter: (node: Omit) => void; hoverFunctorItem?: FunctorItemType; value?: OpenDataSourcePanelParams; getCurFunctionItem: (item: any) => void; } declare const DirectoryTabs: FC; export default DirectoryTabs;