export declare enum SubscriptionStatus {
    PENDING = 0,
    ACTIVE = 1,
    INACTIVE = 2,
    CANCELLED = 3,
    EXPIRED = 4
}
