import { default as React } from 'react';

export interface WizardNavigationProps {
    onPrevious?: () => void;
    onNext?: () => void;
    onSubmit?: () => void;
    canGoNext?: boolean;
    canGoPrevious?: boolean;
    isLastStep?: boolean;
    submitLabel?: string;
    nextLabel?: string;
    previousLabel?: string;
    className?: string;
    style?: React.CSSProperties;
}
export declare const WizardNavigation: React.FC<WizardNavigationProps>;
