import type { Patch, State } from "../types"; /** * Copies state with patches recursively. Keys with `undefined` or `null` values in patch are deleted. * @param prev original state * @param curr patches to merge * @returns a new patched state */ export declare const patch: (prev: Readonly>, curr: Readonly>) => Readonly>; //# sourceMappingURL=patch.d.ts.map