import type { ProgressLogger } from '../lib/progress'; export interface PrerenderContext { /** Absolute path to the SSR bundle entry */ ssrEntryPath: string; /** Absolute path to the client output directory */ clientOutDir: string; /** Absolute path to the final output directory */ outDir: string; /** The base path (e.g. "/") */ base: string; /** List of page paths to render (e.g. ["/", "/posts/hello"]) */ pagePaths: string[]; /** Site title for SEO title suffix */ siteTitle: string; /** Progress logger for reporting render progress */ progress?: ProgressLogger; } export declare function prerenderHtmlPages(context: PrerenderContext): Promise; //# sourceMappingURL=prerender.d.ts.map