import { EventEmitter } from '../../stencil-public-runtime'; import { PauseStep } from '../../interfaces/pause-subscription.interface'; export declare class PauseSubscription { subscriptionId: string; nextBillingDate: string; productName: string; price: number; currencySymbol: string; statusText: string; imageUrl: string; quantity: number; gobackButton: boolean; currentStep: PauseStep; selectedDuration: 1 | 2 | 3; loading: boolean; errorMessage: string; updateSubscriptionView: EventEmitter; private get resumeDate(); private getPauseUntilDate; private formatDate; private handleDurationSelect; private handleContinue; private handleGoBack; private handleConfirmPause; private renderSelectStep; private renderConfirmStep; private renderSuccessStep; render(): any; }