export type Language = 'en' | 'de' export interface EmailTemplate { html: (data: any) => string text: (data: any) => string }