import { FC } from 'react';
import { FooterDataInterface, StepInterface } from '../stepper';
export interface StepperFooterInterface {
    isPrevBtn: boolean;
    previousStepHandler: () => void;
    isLastStep: boolean;
    nextStepHandler: () => void;
    footerData: FooterDataInterface;
    steps: StepInterface[];
    currentTabIndex: number;
    successColor?: string;
}
export declare const StepperFooter: FC<StepperFooterInterface>;
