export declare type SubscriptionCancelType = 'no-future-need' | 'not-used-enough' | 'dislike-autorenew' | 'switching-to-alternative' | 'losses' | 'bad-experience-with-others' | 'bad-customer-service-experience' | 'missing-featurers' | 'technical-issues' | 'too-expensive' | 'other'; export declare const subscriptionCancelTypes: SubscriptionCancelType[]; export interface SubscriptionCancelPrompt { type: SubscriptionCancelType; reason: string; followUpQuestion?: string; } export declare const subscriptionCancelPrompts: SubscriptionCancelPrompt[]; export interface SubscriptionCancelReason { type: SubscriptionCancelType; response: string; }