import { OnInit } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { Router } from '@angular/router'; import { AuthenticationService, EwCommonService } from 'ew-common-lib'; import { EwMaIntegrationService } from '../ew-ma-integration.service'; import { EwMaIntegrationTranslateService } from '../services/ew-ma-integration-translate.service'; import { TranslateService } from '@ngx-translate/core'; export declare class IntegrationComponent implements OnInit { private env; private EwMaIntegrationService; private authenticationService; private router; dialog: MatDialog; private ewTranslateService; translate: TranslateService; private ewCommonService; default_lang: string; userDomain: any; integrationList: any; selectedService: string; listData: any; showIntegration: number; activatedServices: number; showLoader: number; environment: any; baseUrl: string; add_integration: any; constructor(env: any, EwMaIntegrationService: EwMaIntegrationService, authenticationService: AuthenticationService, router: Router, dialog: MatDialog, ewTranslateService: EwMaIntegrationTranslateService, translate: TranslateService, ewCommonService: EwCommonService); ngOnInit(): void; initLanguage(): void; /** * @description * Fetch all integration listing from API */ getIntegtaionList(): void; activeTab: string; overview(activeTab: any): void; eventRoom(activeTab: any): void; keepOrder: (a: any, b: any) => any; redirectToAddIntegration(service_provider: any): void; connectCrm(service_provider: any): void; V2CDN(): any; }