import { Mailer } from './index'; import { Mailable } from './Mailable'; import { MailAddress } from '@Typetron/Mail/MailAddress'; export declare class PendingMail { private mailer; details: { subject?: string; from: string | MailAddress; to?: string | MailAddress; replyTo?: string | MailAddress; cc?: string | MailAddress; bcc?: string | MailAddress; body?: string | { html: string; text: string; }; }; constructor(mailer: Mailer); subject(subject: string): this; from(email: string | MailAddress): this; to(email: string | MailAddress): this; replyTo(email: string | MailAddress): this; cc(email: string | MailAddress): this; bcc(email: string | MailAddress): this; send(body: string | { html: string; text: string; } | Mailable): Promise; } //# sourceMappingURL=PendingMail.d.ts.map