import { PaymentGateway } from './interfaces/payment-gateway.interface';
import { PrismaService } from '../../prisma/prisma.service';
export declare class PaymentFactory {
    private readonly prisma;
    constructor(prisma: PrismaService);
    getGateway(gatewayType: string, credentials?: Record<string, any>): PaymentGateway;
}
