export interface TemplateWAModel { ID: string; ClientId: string; ClientName: string; Status: string; CreatedAt: Date; updated_at: Date; waba: string; category: string; name: string; lang: string; platform: string; expired: number; footer: string; body: { text: string; examples: string[]; }; header: { type: string; text?: string; examples?: string[]; url?: string; }; buttons: TemplateButtonModel[]; carousel: any; } interface TemplateButtonModel { type: string; text: string; phoneNo: string; url: string; otpType: string; packageName: string; hash: string; flow_id: string; flow_action: string; navigate_screen: string; examples: string[]; } export {};