type LinesOptions = {
    EOL?: "KEEP" | "LF" | "CRLF" | "NONE";
};
/** split string stream into lines stream, handy to concat LLM's tokens stream into line by line stream or split a long string by lines */
export declare const lines: {
    (opts?: LinesOptions): TransformStream<string, string>;
};
export {};
