import { Step } from './Step'; export interface Props { steps?: Step[] | null; initialStepNumber?: number; pageSize?: number; autocompletePreviousSteps?: boolean; completeStepButtonId?: string | null; previousStepButtonId?: string | null; completeStepsClickable?: boolean; incompleteStepsClickable?: boolean; arrowsAsCarousel?: boolean; contentCssClass?: string | null; autoSetStepNumberFromUrlPath?: boolean; }