import { CompareArgs, Deduplicate_func_result } from '../types/compare'; import { Item } from '../types/item'; /** * This function compares two items and returns a boolean value indicating if the items are identical. * @param {Item} item - The first item to compare. * @param {Item} item2 - The second item being compared to the first item (item) in the compare function. */ export default function compare(item: Item, item2: Item, args: CompareArgs): Promise;