import { Readable } from 'node:stream'; import type { Component, ComponentProps } from 'svelte'; export type RenderPipeableOptions = { bootstrapScriptContent?: string; bootstrapScripts?: string[]; bootstrapModules?: string[]; nonce?: string; onError?: (error: unknown) => void; progressiveChunkSize?: number; signal?: AbortSignal; }; export declare const renderToPipeableStream: >>(component: Comp, props?: ComponentProps, { bootstrapScriptContent, bootstrapScripts, bootstrapModules, nonce, onError, progressiveChunkSize, signal }?: RenderPipeableOptions) => Readable;