import { CouchdbService } from '~backend/couchdb/couchdb.service'; import { PaymentGatewayDoc, PaymentGatewayService as CorePaymentGatewayService } from '~core/modules/paymentGateway'; export declare class PaymentGatewayService { private readonly couchdbService; core: CorePaymentGatewayService; constructor(couchdbService: CouchdbService); all(): Promise; create(payload: PaymentGatewayDoc): Promise; update(payload: PaymentGatewayDoc): Promise; delete(id: string): Promise; }