import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Splits elements on a delimiter and transforms the splits into desired * output. * @tsplus static effect/core/stream/Stream.Aspects splitOnChunk * @tsplus pipeable effect/core/stream/Stream splitOnChunk * @tsplus location "@effect/core/stream/Stream/operations/splitOnChunk" */ export declare function splitOnChunk(delimiter: Chunk): (self: import("../definition").Stream) => import("../definition").Stream>; //# sourceMappingURL=splitOnChunk.d.ts.map