type Split = { (char: string): (chunks: Iterable) => Iterable; (char: string, chunks: Iterable): Iterable; }; /** @tags transformer, generator */ export declare const split: Split; export {};