import { ClaimMap, RetryWithEscalation } from '@terminus/ngx-tools/jwt'; import { Observable } from 'rxjs'; export declare class RetryWithEscalationMock extends RetryWithEscalation implements RetryWithEscalation { tokenEscalationsRequested: string[]; escalationSuccessful: boolean; static forTestBed(): { provide: typeof RetryWithEscalation; useFactory: typeof retryWithEscalationFactory; }; retryWithEscalation(tokenName: Extract): (source: Observable) => Observable; } /** * Return mock */ export declare function retryWithEscalationFactory(): RetryWithEscalationMock;