export interface MobileStepperProps {
    /**
     * The total steps
     */
    stepAmount: number;
    /**
     * Set the active step (zero based index)
     */
    currentStep: number;
    /**
     * The previous button click callback.
     */
    onPrevious: () => void;
    /**
     * The next button click callback.
     */
    onNext: () => void;
}
