import { Id, NotificationType } from '..'; import { UserId } from '../user'; export interface MailTemplate { id: MailTemplateId; /** Equal to id, cannot be changed after being created. */ name: string; subject: string; html: string; isLocked: boolean; creator: UserId; /** The category of notification. If a user has email settings off for it, then it's not sent. */ notificationType?: NotificationType; } export declare type MailTemplateId = Id;