/** * Centralized SSR Render Helper * * Provides a consistent way to render components for SSR testing * with React Router context. */ import React from "react"; /** * Renders a component to string for SSR testing with React Router context * * @param element - The React element to render * @param options - Optional configuration * @returns The rendered HTML string */ export declare function renderSSR(element: React.ReactElement, options?: { initialEntries?: string[]; }): string; //# sourceMappingURL=ssr-render.d.ts.map