import type { Array } from "../Collections/Immutable/Array/index.js"; import type { Effect } from "./effect.js"; /** * Drops all elements so long as the effectful predicate returns true. * * @ets_data_first dropWhile_ */ export declare function dropWhile(p: (a: A) => Effect, __trace?: string): (as: Iterable) => Effect>; /** * Drops all elements so long as the effectful predicate returns true. */ export declare function dropWhile_(as: Iterable, p: (a: A) => Effect, __trace?: string): Effect>; //# sourceMappingURL=dropWhile.d.ts.map