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