import { ChatMessage } from '../entities/chat-message.entity';
export type ZaloMessageType = 'text' | 'image' | 'video' | 'file' | 'sticker' | 'template';
export interface ChatMessagePayload {
    type: ZaloMessageType;
    text?: string;
    url?: string;
    file_id?: string;
    sticker_id?: number;
    template?: any;
}
export declare function buildZaloPayload(message: ChatMessage): any;
