/** * An enum representing the way the collection utility determines uniqueness */ export declare enum UniqueMode { /** Use the object's ID to determine uniqueness */ Id = 0, /** Use the object's properties to determine uniqueness */ Object = 1 }