export interface WhatsappTemplateProps {
    name: string;
    language: string;
    namespace?: string;
    header?: Record<string, any>;
    body?: Record<string, any>;
    footer?: Record<string, any>;
    buttons?: Record<string, any>;
}
export declare const WhatsappTemplate: (props: WhatsappTemplateProps) => any;
