import { Readable } from 'stream'; import { Route, SEOConfig } from '../../types'; import React from 'react'; export interface SSRContext { route: Route; params: { [key: string]: string; }; searchParams: { [key: string]: string | string[] | undefined; }; seoConfig?: SEOConfig; } export declare function createSSRStream(App: React.ComponentType, context: SSRContext): Promise; export declare function generateHTMLTemplate(content: string, seoConfig?: SEOConfig, scripts?: string[]): string;