import { Subject } from '../Subject'; import { Observable } from '../Observable'; import { Subscriber } from '../Subscriber'; import { Subscription } from '../Subscription'; /** * @class ConnectableObservable */ export declare class ConnectableObservable extends Observable { source: Observable; protected subjectFactory: () => Subject; protected _subject: Subject; protected _refCount: number; protected _connection: Subscription; /** @internal */ _isComplete: boolean; constructor(source: Observable, subjectFactory: () => Subject); /** @deprecated This is an internal implementation detail, do not use. */ _subscribe(subscriber: Subscriber): Subscription; protected getSubject(): Subject; connect(): Subscription; refCount(): Observable; } export declare const connectableObservableDescriptor: PropertyDescriptorMap;