/// import { VariableGroup } from '@/api'; declare function SortableItem({ id, group, dataSource, onChange, onRemove, }: { id: string; group?: VariableGroup; dataSource: any[]; onChange?: (id: string, group: VariableGroup) => void; onRemove?: (id: string) => void; }): JSX.Element; export default SortableItem;