import { FormBuilder, FormGroup } from '@angular/forms'; import { NewPaymentService } from '../../services/api/new-payment.service'; import { ElementRef } from '@angular/core'; import { Router } from '@angular/router'; import { ConfigService } from '../../services/config.service'; import { SelectedPlanService } from '../../services/selected-plan.service'; import { MyAccountService } from '../../services/api/my-account.service'; import { InvoiceDataService } from '../../services/api/invoice-data.service'; import { IMyAccountVm } from '../../../../fas-payments/my-account-vm.model'; import { IInvoiceDataVm } from '../../../../fas-payments/invoice-data-vm.model'; import { IPlatformSubscriptionPlanVm } from '../../../../fas-payments/platform-subscription-plan-vm.model'; import { InAppBrowser } from '@awesome-cordova-plugins/in-app-browser/ngx'; import { SharedDataService } from '../../services/shared-data.service'; import * as i0 from "@angular/core"; interface PlanDropdownList { label: string; value: string; } export declare class SummaryComponent { private selectedPlanService; private invoiceDataService; private sharedDataService; private newPaymentServce; private myAccountService; private configService; private formBuilder; private iab; private router; formContainer: ElementRef; subscriptionForm: FormGroup; mainForm: FormGroup; additionalForm: FormGroup; submitPay: boolean; submitUpdate: boolean; planDropdownList: PlanDropdownList[]; selectedPlan: any; recivedValue: string; currentCompanyGuid: string; loadingSubmit: boolean; loadingUpdate: boolean; buttonDisable: boolean; errorMessage: string; planData: any; content: any; isInvoice: boolean; invoiceData: IInvoiceDataVm; myAccountData: IMyAccountVm; selectedPlanData: any; isUpdate: boolean; allPlans: IPlatformSubscriptionPlanVm[]; mainColor: string; platform: any; private destroy$; constructor(selectedPlanService: SelectedPlanService, invoiceDataService: InvoiceDataService, sharedDataService: SharedDataService, newPaymentServce: NewPaymentService, myAccountService: MyAccountService, configService: ConfigService, formBuilder: FormBuilder, iab: InAppBrowser, router: Router); ngOnInit(): void; ngOnDestroy(): void; initializeApp(): void; private updateIsUpdate; setSubscriptionPlan(plan: any): void; onKeyDown(inputId: string): void; handleInvoiceToggle(isInvoice: boolean): void; toggleInvoice(): void; setValidators(): void; removeValidators(): void; updateValidators(): void; findFirstInvalidControl(): HTMLElement | null; scrollToInvalid(): void; onUpdate(): void; onSubmit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};