import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Drops the last specified number of elements from this stream. * * Note: this combinator keeps `n` elements in memory. Be careful with big * numbers. * @tsplus static effect/core/stream/Stream.Aspects dropRight * @tsplus pipeable effect/core/stream/Stream dropRight * @tsplus location "@effect/core/stream/Stream/operations/dropRight" */ export declare function dropRight(n: number): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=dropRight.d.ts.map