import { UPIApp } from './definitions'; import type { CFPaymentServiceAPI } from './definitions'; export * from './definitions'; declare class CFPaymentService implements CFPaymentServiceAPI { startPaymentWEB(params: Object | Map): Promise; startPaymentUPI(params: Object | Map): Promise; getUPIApps(): Promise; getIcon(base64String: string): string; transFormUPIResponse(result: any): UPIApp[]; private static strMapToObj; } declare const CFPaymentServiceInstance: CFPaymentService; export { CFPaymentServiceInstance };