import { Duration } from "@tsplus/stdlib/data/Duration"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Emits elements of this stream with a fixed delay in between, regardless of * how long it takes to produce a value. * @tsplus static effect/core/stream/Stream.Aspects fixed * @tsplus pipeable effect/core/stream/Stream fixed * @tsplus location "@effect/core/stream/Stream/operations/fixed" */ export declare function fixed(duration: Duration): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=fixed.d.ts.map