export declare class GlideEmailOutbound { /** * Constructs a new GlideEmailOutbound instance. */ constructor(); /** * Saves the email to the outbound queue. */ save(): void; getWatermark(): string; getSubject(): string; setSubject(subject: string): void; setFrom(from: string): void; setReplyTo(replyTo: string): void; addAddress(type: string, address: string, name?: string): void; setBody(body: string): void; }