type PathKey = string | number; type Updater = (currentValue: unknown, ...args: unknown[]) => unknown; export declare function update_in(value: unknown, keys: PathKey[] | unknown, updater: Updater, ...args: unknown[]): unknown; export {};