import type { FC } from 'react'; import type { Step, JournalMapData } from '../type'; import './Actions.less'; interface UserActionProps { step: Step; stepIndex: number; stepLength: number; actions: JournalMapData['actions']; color: string; } declare const Actions: FC; export default Actions;