export declare class TemplatePrinter { /** * Outputs message to the email body */ print(string?: string): void; /** * Outputs spaces to the email body */ space(spaces?: number): void; constructor(); }