import { type ObservableLike, Observable } from "./Observable.js"; /** * Allows performing effects when a value is emitted without altering the value * that is emitted. */ export declare function tap(callback: (value: T) => unknown): (observable: ObservableLike) => Observable; //# sourceMappingURL=tap.d.ts.map