import { ISubscription } from 'rxjs/Subscription'; export declare type IObservable = { observe: (handler: (value: T[]) => void) => ISubscription; };