import { TStep } from "../types/TStep";
export { previousStep };
declare const previousStep: (args: {
    history: TStep[];
    setHistory: Function;
    setPoppedHistory: Function;
}) => () => void;
