import type { EmailProvider, EmailRecipient, EmailSendOptions } from '../types.js'; export interface SendgridMailingConfig { apiKey: string; verifiedSenderEmail: string; verifiedSenderName?: string; } /** * Send emails via SendGrid API. */ export declare class SendgridMailingProvider implements EmailProvider { private readonly sender; constructor(config: SendgridMailingConfig); sendEmail(to: EmailRecipient, subject: string, bodyHtml: string, options?: EmailSendOptions): Promise; } //# sourceMappingURL=sendgrid-provider.d.ts.map