import { TStep } from "../types/TStep";
import { TWizardOptions } from "../types/TWizardOptions";
import { TWizardType } from "../types/TWizardType";
export { nextStep };
declare const nextStep: (args: {
    wizardType: TWizardType;
    history: TStep[];
    setHistory: Function;
    setPoppedHistory: Function;
    options: TWizardOptions;
}) => () => any;
