import DefaultHandler from './default'; import { Assets, Asset } from '../../../types'; export declare const supportedTemplates: string[]; export declare const schema: { type: string; items: { type: string; properties: { template: { type: string; enum: string[]; }; body: { type: string; default: string; }; }; required: string[]; }; }; export default class EmailTemplateHandler extends DefaultHandler { constructor(options: DefaultHandler); objString(item: any): string; getType(): Promise; updateOrCreate(emailTemplate: any): Promise; processChanges(assets: Assets): Promise; }