import { SubscriptionModel } from '../../../models'; import { SubscriptionScopes } from '../../../types'; export declare enum SubscriptionActions { PAUSE = "PAUSE", RESUME = "RESUME", CANCEL = "CANCEL", UNDO_CANCELATION = "UNDO_CANCELATION", REACTIVATE = "REACTIVATE", CHANGE_PLAN = "CHANGE_PLAN" } export declare const useSubscriptionAvailableActions: (subscription: Partial, subscriptionScopes: SubscriptionScopes[]) => SubscriptionActions[];