/** Pushes an item to the array if it doesn't exist, otherwise updates it. */ export declare function upsert(array: T[], item: T, predicate?: (value: T) => boolean): void;