import { AfterViewInit } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { SubscriptionService } from '../../services/subscription.service'; export declare class PlansComponent implements AfterViewInit { private http; private subscriptionService; prices: { yearlyMonth: number; monthlyYear: number; yearly: number; monthly: number; }; currency: 'USD'; locale: 'ar'; constructor(http: HttpClient, subscriptionService: SubscriptionService); ngAfterViewInit(): void; onClickSubscribe(period: 'monthly' | 'yearly'): void; }