/** * SSR rendering engine — page rendering with VeryfrontRenderer, chunk analysis, * multi-tier cache coordination (API, filesystem, KV, memory, Redis), and layouts. * * @module rendering */ export type { PageDataResponse, RendererOptions, RenderResult } from "./orchestrator/types.js"; export { VeryfrontRenderer } from "./orchestrator/ssr.js"; export { analyzeProjectChunks, generateChunkManifest } from "./chunk-optimizer.js"; export { CacheCoordinator, type CacheCoordinatorOptions } from "./cache/cache-coordinator.js"; export type { CachePayload, CacheStore } from "./cache/types.js"; export { APICacheStore, FilesystemCacheStore, KVCacheStore, MemoryCacheStore, RedisCacheStore, } from "./cache/stores/index.js"; export { applyLayoutsESM, applyLayoutsFunctionBody, clearLayoutDiscoveryCache, compileMDXLayouts, computeDepsHash, discoverNestedLayouts, } from "./layouts/index.js"; export { getCompiledSnippet, renderSnippet, type SnippetRenderOptions, type SnippetRenderResult, } from "./snippet-renderer.js"; import { type RendererOptions, VeryfrontRenderer } from "./orchestrator/ssr.js"; export declare function createRenderer(options: RendererOptions): Promise; //# sourceMappingURL=index.d.ts.map