export declare namespace Whatsapp019Webhook {
    type MessageType = 'text' | 'image' | 'audio' | 'ptt' | 'video' | 'document' | 'location' | 'button' | 'list' | 'reaction' | 'contacts' | 'order';
    interface WebhookPayload {
        status: 'OK' | 'FAIL';
        hook: 'new' | string;
        unique: string;
        from: string;
        to: string;
        senderName?: string;
        type: MessageType;
        body?: string;
        caption?: string | null;
        media?: boolean;
        isForwarded?: boolean;
        quote?: boolean;
        quoteUnique?: string;
        conversationTimeLeft?: number;
        referral?: unknown;
        timestamp: string | number;
        timestampMS?: number;
    }
}
