/** * Performs a deep and strict comparison between two values to determine if they are equal. * The comparison checks types, structure, and all nested properties without coercion. * * @param {any} valueA - The first value to compare. * @param {any} valueB - The second value to compare. * @returns {boolean} Returns `true` if the values are deeply and strictly equal, otherwise `false`. */ export declare function deepStrictEqual(valueA: any, valueB: any): boolean;