import type { SCAction, StateModel, TopLevelDataSchema } from './types'; export declare function StateReducer(): { reducer: ({ currentState: currState, prevState }: StateModel["state"], action: SCAction) => StateModel["state"]; setCurrentForms: (forms: string[]) => void; };