import type { FC } from 'react' import { useTranslation } from 'react-i18next' import { mockData } from './mock' import { getNodeInfoById } from '@/app/components/workflow/nodes/_base/components/variable/var-reference-picker' import { VarBlockIcon } from '@/app/components/workflow/block-icon' import { Line3 } from '@/app/components/base/icons/src/public/common' import { Variable02 } from '@/app/components/base/icons/src/vender/solid/development' const i18nPrefix = 'workflow.nodes.variableAssigner' const Node: FC = () => { const { t } = useTranslation() const { variables, output_type } = mockData // TODO: get var type through node and value const getVarType = () => { return 'string' } return (