import type { WompoComponent, WompoProps } from '../wompo.js'; import type { SsrOptions } from './types.js'; /** Inline runtime injected at the top of the streamed HTML. ~140 bytes. */ export declare const BOUNDARY_RUNTIME_SCRIPT = ""; /** Render a Wompo component to a `ReadableStream`. The shell (with Suspense * fallbacks) flushes first; resolved boundaries are appended as their useAsync work completes. */ export declare function renderToStream(Component: WompoComponent, props?: WompoProps, options?: SsrOptions): ReadableStream;