import { Duration } from "@tsplus/stdlib/data/Duration"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Specialized version of interruptWhen which interrupts the evaluation of * this stream after the given duration. * @tsplus static effect/core/stream/Stream.Aspects interruptAfter * @tsplus pipeable effect/core/stream/Stream interruptAfter * @tsplus location "@effect/core/stream/Stream/operations/interruptAfter" */ export declare function interruptAfter(duration: Duration): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=interruptAfter.d.ts.map