import { NextActionProps } from './types/NextAction'; import { PrevActionProps } from './types/PrevAction'; export type WizardMainActionsProps = { /** * 1つ前のstepに戻るためのボタン */ prevAction?: PrevActionProps; /** * 1つ次のstepに進むためのボタン */ nextAction?: NextActionProps; };