import {none} from '../defs'; export = lines; /** * The flushable function that outputs text in lines. */ type LinesOutput = (value: string | typeof none) => Generator; /** * Creates a flushable function that outputs text in lines. * @returns a splitter function */ declare function lines(): LinesOutput;