import type { DSLNodeType } from '@lingxiteam/dsl'; import type { FC } from 'react'; import './index.less'; interface ContextListProps { onInsertNode: (node: DSLNodeType) => void; functionContextListShowIds?: string[]; } declare const ContextList: FC; export default ContextList;