import type { StateCreator, StoreApi, StoreMutatorIdentifier } from '../vanilla'; type Action = { type: T; }; type ActionCreator = { (...args: P): A; }; type EnhancerOptions = { name?: string; actionCreators?: ActionCreator[] | { [key: string]: ActionCreator; }; latency?: number; maxAge?: number; serialize?: boolean | { options?: undefined | boolean | { date?: true; regex?: true; undefined?: true; error?: true; symbol?: true; map?: true; set?: true; function?: true | ((fn: (...args: any[]) => any) => string); }; replacer?: (key: string, value: unknown) => any; reviver?: (key: string, value: unknown) => any; immutable?: any; refs?: any; }; actionSanitizer?: (action: A, id: number) => A; stateSanitizer?: (state: S, index: number) => S; actionsBlacklist?: string | string[]; actionsWhitelist?: string | string[]; actionsDenylist?: string | string[]; actionsAllowlist?: string | string[]; predicate?: (state: S, action: A) => boolean; shouldRecordChanges?: boolean; pauseActionType?: string; autoPause?: boolean; shouldStartLocked?: boolean; shouldHotReload?: boolean; shouldCatchErrors?: boolean; features?: { pause?: boolean; lock?: boolean; persist?: boolean; export?: boolean | 'custom'; import?: boolean | 'custom'; jump?: boolean; skip?: boolean; reorder?: boolean; dispatch?: boolean; test?: boolean; }; trace?: boolean | ((action: A) => string); traceLimit?: number; }; type Config = EnhancerOptions & { type?: string; }; declare module '../vanilla' { interface StoreMutators { 'zustand/devtools': WithDevtools; } } type Cast = T extends U ? T : U; type Write = Omit & U; type TakeTwo = T extends { length: 0; } ? [undefined, undefined] : T extends { length: 1; } ? [...a0: Cast, a1: undefined] : T extends { length: 0 | 1; } ? [...a0: Cast, a1: undefined] : T extends { length: 2; } ? T : T extends { length: 1 | 2; } ? T : T extends { length: 0 | 1 | 2; } ? T : T extends [infer A0, infer A1, ...unknown[]] ? [A0, A1] : T extends [infer A0, (infer A1)?, ...unknown[]] ? [A0, A1?] : T extends [(infer A0)?, (infer A1)?, ...unknown[]] ? [A0?, A1?] : never; type WithDevtools = Write>; type StoreDevtools = S extends { setState: (...a: infer Sa) => infer Sr; } ? { setState(...a: [...a: TakeTwo, action?: A]): Sr; } : never; export interface DevtoolsOptions extends Config { enabled?: boolean; anonymousActionType?: string; store?: string; } type Devtools = (initializer: StateCreator, devtoolsOptions?: DevtoolsOptions) => StateCreator; declare module '../vanilla' { interface StoreMutators { 'zustand/devtools': WithDevtools; } } export type NamedSet = WithDevtools>['setState']; export declare const devtools: Devtools; export {};