import { TemplateType, EmailTemplateDetails, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link EmailTemplate} for the original type. */ export type CreateEmailTemplate = { tenantId?: string; id: string; languageTag: string; templateType: TemplateType; details: EmailTemplateDetails; createdAt?: number; }; export type EmailTemplate = { tenantId: string; id: string; languageTag: string; templateType: TemplateType; details: EmailTemplateDetails; createdAt: number; }; export type EmailTemplateKeys = 'tenantId' | 'id' | 'languageTag' | 'templateType' | 'details' | 'createdAt'; export declare const EmailTemplates: GeneratedSchema;