import { Base } from '../base'; import { StripePaymentIntentType, osType, PaymentStatusResponseType } from '../../types/payments'; export declare class Payments extends Base { createStripePayment(amount: number, os: osType, userAgent: string): Promise; getStripePurchaseStatus(id: string): Promise; }