import { EmailResources } from './emailResources'; export declare class Email { 'body': string; 'footer'?: string; 'type'?: Email.TypeEnum; 'resources'?: EmailResources; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Email { enum TypeEnum { Plain, Html } }