/** * Internal Modules */ import type { PaymentGatewayModules, PaymentGatewayModule } from '../types'; /** * Register PaymentGateway Module * * @param {string} slug The module slug * @param {PaymentGatewayModule} module The module properties. * */ export declare const registerPaymentGatewayModule: (slug: string, module: PaymentGatewayModule) => void; export declare const getPaymentGatewayModules: () => PaymentGatewayModules; export declare const getPaymentGatewayModule: (slug: string) => any; //# sourceMappingURL=index.d.ts.map