import { MonoTypeOperatorFunction } from "rxjs"; /** * A RxJS pipeable operator which shares and replays the latest emitted value. * It's the equivalent of: * * ```ts * source$.pipe( * multicast(() => new ReplaySubject(1)), * refCount(), * ) * ``` * * @remarks The enhanced observables returned from `connectObservable` and * `connectFactoryObservable` have been enhanced with this operator. */ export declare const shareLatest: () => MonoTypeOperatorFunction;