import { DomainObject } from "./domain-object"; export declare class EmailTemplate extends DomainObject { Type?: string | undefined; Subject?: string | undefined; Body_Html?: string | undefined; Body_Text?: string | undefined; EmailFrom_Address?: string | undefined; EmailFrom_DisplayName?: string | undefined; Language?: string | undefined; Group?: string | undefined; Default?: boolean | undefined; } //# sourceMappingURL=email-template.d.ts.map