export declare enum SubscriptionStatus {
    NotSet = 0,
    Subscribed = 1,
    Pending = 2,
    Unsubscribed = 3,
    Deleted = 4
}
