import { Predicate } from "@tsplus/stdlib/data/Predicate";
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";
/**
* Creates a pipeline that drops elements while the specified predicate
* evaluates to `true`.
* @tsplus static effect/core/stream/Stream.Aspects dropWhile
* @tsplus pipeable effect/core/stream/Stream dropWhile
* @tsplus location "@effect/core/stream/Stream/operations/dropWhile"
*/
export declare function dropWhile(f: Predicate): (self: import("../definition").Stream) => import("../definition").Stream;
//# sourceMappingURL=dropWhile.d.ts.map