export declare class PaymentSource { private readonly name; static ENTERPRISE: PaymentSource; static SENSOR_PURCHASE: PaymentSource; static APPLE: PaymentSource; static SEAT_LICENSE: PaymentSource; static STRIPE: PaymentSource; static THIRD_PARTY: PaymentSource; static INTERNAL: PaymentSource; constructor(name: string); getName(): string; static asArray(): PaymentSource[]; }