import { OperatorFunction } from 'rxjs'; export declare type ConnectionStatus = 'pending' | 'loaded' | 'errored' | 'completed'; /** * Monitors the status of a stream * @typeparam T */ export declare function statusMonitor(): OperatorFunction;