import { Stream } from "@effect/core/stream/Stream/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Returns a new stream that only emits elements that are not equal to the * previous element emitted, using the specified function to determine whether * two elements are equal. * @tsplus static effect/core/stream/Stream.Aspects changesWith * @tsplus pipeable effect/core/stream/Stream changesWith * @tsplus location "@effect/core/stream/Stream/operations/changesWith" */ export declare function changesWith(f: (x: A, y: A) => boolean): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=changesWith.d.ts.map