/**
 * Checks if an object matches the standard field comparison.
 * @param obj - The object to check.
 * @param fields - Criteria to compare.
 * @returns Whether the object matches the criteria.
 */
export default function hasFields(obj: Object, fields: Object): boolean;
