/** * Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ /** Apply changes to an immutable-like object */ export declare function produce(base: T, recipe: (draft: T) => T | void): T;