import React from 'react'; import type { RenderResult } from '@testing-library/react'; /** * Lazy require to avoid loading @testing-library/react during SSR tests. * jest.resetModules() clears the cache, so RTL would register its hooks inside tests. */ export declare const renderWithIntl: (component: React.ReactNode) => RenderResult;