import type StreamSource from "#StreamSource"; type NamedStreamSource = { name: string; } & StreamSource; export default abstract class Streamable { constructor(); abstract stream(): ReadableStream; static [Symbol.hasInstance](x: unknown): x is Streamable; static is(x: unknown): x is Blob | ReadableStream | Streamable; static named(x: unknown): x is NamedStreamSource; static stream(x: unknown): ReadableStream; } export {}; //# sourceMappingURL=Streamable.d.ts.map