import { Effect } from "@effect/core/io/Effect/definition"; import { Either } from "@tsplus/stdlib/data/Either/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Scope } from "@effect/core/io/Scope/definition"; /** * Split a stream by a predicate. The faster stream may advance by up to * buffer elements further than the slower one. * @tsplus static effect/core/stream/Stream.Aspects partitionEither * @tsplus pipeable effect/core/stream/Stream partitionEither * @tsplus location "@effect/core/stream/Stream/operations/partitionEither" */ export declare function partitionEither(p: (a: A) => Effect>, buffer?: number): (self: import("../definition").Stream) => import("../../../io/Effect").Effect, import("../definition").Stream]>; //# sourceMappingURL=partitionEither.d.ts.map