import type { MonoTypeOperatorFunction } from 'rxjs'; /** * Shorthand for tap(noop, noop, tapFunction) * @since 1.0.0 * @param tapFn Tap function to execute when the source completes * @kind Operator * @see https://rxjs.dev/api/operators/tap * @example * import {of} from 'rxjs'; * import {tap} from 'rxjs/operators'; * import {tapComplete} from '@aloreljs/rxutils/operators'; * * of('foo') * .pipe( * tap(() => console.log('next'), () => console.log('error'), () => console.log('complete')), * tapComplete(() => console.log('definitely complete')) * ) * .subscribe(); * // Logs "complete" then "definitely complete" */ export declare function tapComplete(tapFn: () => void): MonoTypeOperatorFunction;