import { PrismaService } from '../common/services/prisma.service';
import { NowPaymentsService } from './nowpayments.service';
import { Telegraf } from 'telegraf';
import { PaystarService } from './paystar.service';
export declare class PaymentsController {
    private prisma;
    private nowPayments;
    private paystar;
    private bot;
    constructor(prisma: PrismaService, nowPayments: NowPaymentsService, paystar: PaystarService, bot: Telegraf);
    handleIpn(body: any, signature: string): Promise<{
        status: string;
    } | undefined>;
    handlePaystarCallback(body: any): Promise<{
        status: string;
    }>;
}
