import{Subscriber}from'./Subscriber';import{OuterSubscriber}from'./OuterSubscriber';/** * We need this JSDoc comment for affecting ESDoc. * @ignore * @extends {Ignored} */exportdeclareclassInnerSubscriber<T,R>extendsSubscriber<R>{privateparent;outerValue:T;outerIndex:number;privateindex;constructor(parent:OuterSubscriber<T,R>,outerValue:T,outerIndex:number);protected_next(value:R):void;protected_error(error:any):void;protected_complete():void;}