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