import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Returns a combined string resulting from concatenating each of the values * from the stream beginning with `before` interspersed with `middle` and * ending with `after`. * @tsplus static effect/core/stream/Stream.Aspects mkStringAffixes * @tsplus pipeable effect/core/stream/Stream mkStringAffixes * @tsplus location "@effect/core/stream/Stream/operations/mkStringAffixes" */ export declare function mkStringAffixes(start: string, middle: string, end: string): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=mkStringAffixes.d.ts.map