import React, { FC } from 'react'; export interface Props { 'data-testid'?: string; current: number; total: number; onStepActivate(step: number): void; } export declare enum Exceptions { CurrentStepTooLow = "The current step must be 1 or higher", TotalStepsTooLow = "The total steps must be 1 or higher", CurrentStepHigherThanTotal = "The current step must equal or lower than the number total steps" } declare const Stepper: FC>; export default Stepper;