import { BaseClientEvent } from '.'; import { UserId } from '../..'; /** * Fired when a user encounters an error when purchasing a * subscription. */ export interface PaymentErrorEvent extends BaseClientEvent { user: UserId; errorMessage: string; } export declare const PaymentErrorEventName = "PaymentErrorEvent";