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