import { ID } from './types'; /** * Upsert item in a collection * * @example * * * store.update(1, entity => ({ * comments: arrayUpsert(entity.comments, 1, { name: 'newComment' }) * })) */ export declare function arrayUpsert(arr: Root, id: ID, obj: Partial, idKey?: string): Root[0][];