export interface BusinessEmailLog { _id: string; businessId: string; category: string; subject: string; to: string[]; from: string; cc: string[]; bcc: string[]; html: string; text: string; created: string; } export interface BusinessEmailLogQuery { toDate: string; fromDate: string; category: string; }