import { Route, SEOConfig } from '../../types'; import React from 'react'; export interface CSRContext { route: Route; params: { [key: string]: string; }; searchParams: { [key: string]: string | string[] | undefined; }; seoConfig?: SEOConfig; } export declare function prerenderPage(_route: Route, App: React.ComponentType, context?: CSRContext): string;