import { OnModuleInit } from '@nestjs/common';
import { WhatsAppService } from './services/whatsapp.service';
import { PaymentPollingService } from '../payments/payment-polling.service';
export declare class WhatsAppModule implements OnModuleInit {
    private readonly whatsappService;
    private readonly pollingService;
    constructor(whatsappService: WhatsAppService, pollingService: PaymentPollingService);
    onModuleInit(): void;
}
