import { WebPlugin } from '@capacitor/core'; import type { CheckoutPayment } from 'cashfree-pg-api-contract'; import type { CFPaymentGatewayPlugin, CFPaymentResult } from './definitions'; export declare class CFPaymentGatewayWeb extends WebPlugin implements CFPaymentGatewayPlugin { doWebCheckoutPayment(webCheckoutPaymentObject: CheckoutPayment): Promise; doUPIPayment(upiCheckoutPaymentObjections: CheckoutPayment): Promise; doSubscriptionPayment(subscriptionCheckoutPaymentObject: CheckoutPayment): Promise; }