/** Email notification */
export interface EmailNotification {
    /** This email body */
    body: string;
    /** This email date */
    date: string;
    /** This email Id */
    id: number;
    /** This email subject */
    subject: string;
}
//# sourceMappingURL=EmailNotification.d.ts.map