import { GenericState } from "~/redux/types/state/Base";
import { Action } from "redux";
export type TransitionMap<T1 extends GenericState, T2 extends GenericState = T1> = {
    state: T1;
    actions: {
        action: Action;
        nextState: T2;
        comment?: string;
    }[];
};
