export declare class PaymentStatus { private readonly name; static PRE_TRIAL: PaymentStatus; static PAID: PaymentStatus; static TRIALING: PaymentStatus; static PRE_TRIAL_WITH_CREDIT_CARD: PaymentStatus; static EXPIRED: PaymentStatus; static TRIALING_WITH_CREDIT_CARD: PaymentStatus; static CANCELLED: PaymentStatus; static TRIAL_ENDED: PaymentStatus; constructor(name: string); getName(): string; }