import { type LikeJSX } from "@my-react/react"; import type { BootstrapScriptDescriptor, ErrorInfo } from "@my-react-dom-server/renderDispatch"; type RenderToPipeableStreamOptions = { identifierPrefix?: string; namespaceURI?: string; nonce?: string; bootstrapScriptContent?: string; bootstrapScripts?: Array; bootstrapModules?: Array; progressiveChunkSize?: number; onShellReady?: () => void; onShellError?: (error: unknown) => void; onAllReady?: () => void; onError?: (error: unknown, errorInfo: ErrorInfo) => string | void; }; type PipeableStream = { abort: (reason?: unknown) => void; pipe: (destination: Writable) => Writable; }; export declare const renderToPipeableStream: (element: LikeJSX, options?: RenderToPipeableStreamOptions) => PipeableStream; export {}; //# sourceMappingURL=renderToPipeableStream.d.ts.map