import React from "react"; import { StepLabelProps } from "./StepLabel"; import "./steptracker.scss"; export declare type StepTrackerLabelPosition = "right" | "left" | "bottom" | "top"; export declare type StepTrackerLabelOrientation = "horizontal" | "vertical"; export declare type StepTrackerProps = Omit & { /** Position of label in step tracker */ labelPosition?: StepTrackerLabelPosition; /** list of item in step tracker */ list?: Array; /** callback when step tracker item clicked */ onClick?: (index: number) => void; /** To display step tracker vertically or horizontally */ orientation?: StepTrackerLabelOrientation; /** Current/ active step */ step: number; /** Use numbers for each step */ useNumbers?: boolean; }; /** Step trackers illustrate the steps in a multi step process */ export declare const StepTracker: React.FC;