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"; /** * Takes the last specified number of elements from this stream. * @tsplus static effect/core/stream/Stream.Aspects takeRight * @tsplus pipeable effect/core/stream/Stream takeRight * @tsplus location "@effect/core/stream/Stream/operations/takeRight" */ export declare function takeRight(n: number): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=takeRight.d.ts.map