export const ReadableStream: {
    new (underlyingSource: import("stream/web").UnderlyingByteSource, strategy?: import("stream/web").QueuingStrategy<Uint8Array> | undefined): ReadableStreamNode<Uint8Array>;
    new <R = any>(underlyingSource?: import("stream/web").UnderlyingSource<R> | undefined, strategy?: import("stream/web").QueuingStrategy<R> | undefined): ReadableStreamNode<R>;
    prototype: ReadableStreamNode<any>;
    from<T>(iterable: Iterable<T> | AsyncIterable<T>): ReadableStreamNode<T>;
};
export const WritableStream: {
    new <W = any>(underlyingSink?: import("stream/web").UnderlyingSink<W> | undefined, strategy?: import("stream/web").QueuingStrategy<W> | undefined): WritableStreamNode<W>;
    prototype: WritableStreamNode<any>;
};
//# sourceMappingURL=webstreams.d.ts.map