import shallowEqualArrays from "./arrays"; import shallowEqualObjects from "./objects"; declare type Comparable = Record | any[] | null | undefined; declare function shallowEqual(a: T, b: T): boolean; export { shallowEqual, shallowEqualObjects, shallowEqualArrays };