import * as React from 'react';
type InternalWizardFooterProps = {
    nextButtonText?: React.ReactNode;
    backButtonText?: React.ReactNode;
    cancelButtonText?: React.ReactNode;
    onBack?: (nextStepIndex: number, prevStepIndex: number) => void;
};
declare const InternalWizardFooter: React.FunctionComponent<InternalWizardFooterProps>;
export default InternalWizardFooter;
