import { Response } from 'express';
import { Whatsapp019WebhookService } from './whatsapp-019-webhook.service';
import { Whatsapp019Service } from './whatsapp-019.service';
import { Whatsapp019Webhook } from '../interfaces/whatsapp-019-webhook.interface';
export declare class Whatsapp019Controller {
    private readonly whatsapp019WebhookService;
    private readonly whatsapp019Service;
    private readonly logger;
    constructor(whatsapp019WebhookService: Whatsapp019WebhookService, whatsapp019Service: Whatsapp019Service);
    handleWebhook(body: Whatsapp019Webhook.WebhookPayload, res: Response): void;
    getPhones(): Promise<{
        phones: string[];
    }>;
}
