import { Readable } from "node:stream";
import { LinesOptions } from "./readable-lines";
export { LinesOptions } from "./readable-lines";
export declare function readableLines(readable: Readable, { encoding }?: LinesOptions): AsyncGenerator<string, undefined, unknown>;
