import type { EntityState, PreventAny } from './models'; import type { PayloadAction } from '../createAction'; import { IsAny } from '../tsHelpers'; export declare function createSingleArgumentStateOperator(mutator: (state: EntityState) => void): >(state: IsAny, S>) => S; export declare function createStateOperator(mutator: (arg: R, state: EntityState) => void): >(state: S, arg: R | PayloadAction) => S;