UNPKG

@navinc/base-react-components

Version:
12 lines (11 loc) 321 B
import { ReactNode } from 'react'; type FlowStep = { content?: ReactNode; }; export type NumericFlowStepsProps = { currentIndex: number; steps: FlowStep[]; className?: string; }; export declare const NumericFlowSteps: ({ currentIndex, steps, className }: NumericFlowStepsProps) => JSX.Element; export {};