import { Bytes } from '@celljs/core'; import { LineDecoder } from './sse-protocol'; /** * Line decoder. */ export declare class LineDecoderImpl implements LineDecoder { private buffer; private trailingCR; static readonly NEWLINE_CHARS: Set; static readonly NEWLINE_REGEXP: RegExp; constructor(); decode(chunk: Bytes): string[]; flush(): string[]; } //# sourceMappingURL=line-decoder.d.ts.map