import { CustomerInfo } from './CustomerInfo'; import { PaymentCurrency } from './PaymentCurrency'; import { PaymentMethod } from './PaymentMethod'; export declare type SubscriptionInfo = { [key: string]: any; notFound?: boolean; stored_rnw_epik_payment_id?: string; stored_rnw_recurring_interval_name?: string; subscription_token: string; interval: string; customer_token: string; status: 'active' | 'inactive'; created_timestamp: string; cancelled_timestamp: string; success_url: string; cancel_url: string; error_url: string; payment_method: PaymentMethod; test_mode: boolean; return_parameters: boolean; currency: PaymentCurrency; amount: string; immediate_execution: boolean; language: string; mobile_mode: boolean; payment_provider: string; masked_cc?: string; expm?: string; expy?: string; customer: CustomerInfo; };