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<StripePaymentIntentType>;
    getStripePurchaseStatus(id: string): Promise<PaymentStatusResponseType>;
}
