export interface StoreSubscription { name: string; email: string; unsubscribed_at?: string; created_at: string; updated_at: string; } export interface StoreSubscribeResponse { message?: string; subscription?: StoreSubscription; errors?: Record; } export interface StoreSubscriptionInput { email: string; name?: string; workspace?: string; business_profile?: string; service_profile?: string; event_profile?: string; }