import type { Action, WorkflowStorageState } from "./types"; /** * Reducer for the WorkflowStorageContext * This will act on the WorkflowStorageState and add / remove items from the temporary storage * as well as localStorage, this will (optionally) keep all storage actions in one location for all * workflows and allow for easier state hydration */ declare const workflowStorageContextReducer: (state: WorkflowStorageState, action: Action) => WorkflowStorageState; export default workflowStorageContextReducer; //# sourceMappingURL=reducer.d.ts.map