import "../operators/async/split"; import { Readable } from "node:stream"; export type LinesOptions = { encoding?: BufferEncoding; separator?: string | RegExp; }; export declare function readableLines(readable: Readable, { encoding, separator }?: LinesOptions): AsyncGenerator;