import { StripeService } from "./stripe.service";
export declare class StripeWebhookController {
    private readonly stripeService;
    constructor(stripeService: StripeService);
    handleWebhook(req: any, signature: string): Promise<{
        received: boolean;
    }>;
    getPaymentStatus(req: any, res: any, sessionId: string): Promise<import("express").Response<any, Record<string, any>>>;
}
