/** * Checks if two values are deeply equal. * * @template T - The type of the values being compared. * @param a - The first value to compare. * @param b - The second value to compare. * @returns `true` if the values are deeply equal, `false` otherwise. */ export declare function isDeepEqual(a: any, b: any): boolean;