/** * * @param {any} x The object which will compare with another(y) * @param {any} y The object which will compare with another(x) * @return {boolean} whether or not x and y is equal */ export declare function compare(x: any, y: any): boolean; export default compare;