///
import type { ServerResponse } from 'http';
export default class RenderResult {
_result: string | ReadableStream;
constructor(response: string | ReadableStream);
toUnchunkedString(): string;
pipe(res: ServerResponse): Promise;
isDynamic(): boolean;
static fromStatic(value: string): RenderResult;
static empty: RenderResult;
}