export default class SliceReader { buf: string; rd?: ReadableStream | ReadableStream; r: number; eof: boolean; constructor(source: ReadableStream | ReadableStream | string | Uint8Array); fill(): Promise; readSlice(delim: string): string | null; }