import type { StateCreator, StoreMutatorIdentifier } from '../vanilla.mjs'; type Write = Omit & U; type Action = { type: unknown; }; type StoreRedux = { dispatch: (a: A) => A; dispatchFromDevtools: true; }; type ReduxState = { dispatch: StoreRedux['dispatch']; }; type WithRedux = Write>; type Redux = (reducer: (state: T, action: A) => T, initialState: T) => StateCreator>, Cms, [['zustand/redux', A]]>; declare module '../vanilla.mjs' { interface StoreMutators { 'zustand/redux': WithRedux; } } export declare const redux: Redux; export {};