import type { SCAction } from './types';
export declare function StateReducer(): {
    reducer: ({ currentState: currState }: {
        currentState: any;
    }, action: SCAction) => {
        currentState: any;
        prevState: any;
        changeInitiatedBy: string;
    };
    setCurrentForms: (forms: any) => void;
};
