import { PropertyService } from '@servicelabsco/nestjs-utility-services'; import { WhatsappMessagePayloadDto } from '../jobs/whatsapp.message.payload.dto'; import { WhatsappService } from '../services/whatsapp.service'; export declare class ProcessWhatsappMessage { private readonly propertyService; private readonly whatsappService; protected payload: WhatsappMessagePayloadDto; protected endPoint: string; constructor(propertyService: PropertyService, whatsappService: WhatsappService); process(payload: WhatsappMessagePayloadDto): Promise; send(apiUrl: string, params: any): Promise; private getRequestData; getMedia(fileName: string): Promise<{ fieldname: string; originalname: string; mimetype: string; buffer: Buffer; size: number; }>; private getEndPoints; }