import { Sink } from "@effect/core/stream/Sink/definition/base"; import { Schedule } from "@effect/core/io/Schedule/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Like `aggregateWithinEither`, but only returns the `Right` results. * @param sink Used for the aggregation * @param schedule Used for signalling for when to stop the aggregation * @tsplus static effect/core/stream/Stream.Aspects aggregateWithin * @tsplus pipeable effect/core/stream/Stream aggregateWithin * @tsplus location "@effect/core/stream/Stream/operations/aggregateWithin" */ export declare function aggregateWithin(sink: Sink, schedule: Schedule, C>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=aggregateWithin.d.ts.map