import type { Action, State } from "./types"; declare const mutate: (state: State, action: Action) => State; export { mutate };