import { OnDestroy } from '@angular/core'; import { BehaviorSubject, Observable, Subscription } from 'rxjs'; import { PkceService } from './pkce.service'; import { ActivatedRoute } from '@angular/router'; import { AppService } from '../services/app.service'; import * as i0 from "@angular/core"; export declare class DeveloperValidationService implements OnDestroy { private pkceService; private route; private appService; authorizationEndpoint: string; tokenEndpoint: string; clientId: string; clientSecret: string; redirectUri: string; securityCheckedViaApi$: BehaviorSubject; securityPassed$: BehaviorSubject; constructor(pkceService: PkceService, route: ActivatedRoute, appService: AppService); saveValidation(status: boolean): void; validateFromCookie(): Observable; overlaySub: Subscription; private monitorValidationStatus; validateDeveloperViaPopup(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }