import { Draft } from "immer"; import { StateSignal } from '@ngrx/signals'; type VoidStateUpdater = (state: State) => void; /** * Apply patches to the state which *allow mutations*. * * @param stateSignal The NGRX signal store object * @param updaters mutating update functions * @returns */ export declare function immutablePatchState(stateSignal: StateSignal, ...updaters: Array> | VoidStateUpdater>>): void; export {};