react-dynamic-stepper
Version:
Advanced and multi-feature react stepper component designed to be incredibly versatile for a variety of workflows and use cases.
15 lines (14 loc) • 476 B
TypeScript
import { PalletInterface, StepInterface } from '../stepper';
import { FC } 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;
}
export declare const StepperHead: FC<StepperHeadInterface>;