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.

17 lines (16 loc) 558 B
import { PalletInterface, StepInterface } from '../stepper'; import { FC, ReactNode } from 'react'; export interface StepperHeadInterface { steps: StepInterface[]; navigateToStepHandler: (index: number) => void; isVertical: boolean; isInline: boolean; isSequenceStepper: boolean; isStepConnector: boolean; isRightToLeftLanguage: boolean; currentTabIndex: number; pallet?: PalletInterface; disableStepHeaderClick?: boolean; customConnector?: ReactNode; } export declare const StepperHead: FC<StepperHeadInterface>;