UNPKG

react-dynamic-stepper

Version:

Advanced and multi-feature react stepper component designed to be incredibly versatile for a variety of workflows and use cases.

14 lines (13 loc) 441 B
import { FC } from 'react'; import { FooterDataInterface, StepInterface } from '../stepper'; export interface StepperFooterInterface { isPrevBtn: boolean; previousStepHandler: () => void; isLastStep: boolean; nextStepHandler: () => void; footerData: FooterDataInterface; steps: StepInterface[]; currentTabIndex: number; successColor?: string; } export declare const StepperFooter: FC<StepperFooterInterface>;