import type { DriverFactory } from "../types.mjs"; export interface SendGridDriverOptions { apiKey: string; endpoint?: string; fetch?: typeof fetch; /** Set X-Smtpapi IP pool. Optional. */ ipPoolName?: string; /** SendGrid dynamic template id — can also come on the message via \`headers["x-template-id"]\`. */ templateId?: string; } declare const sendgrid: DriverFactory; export default sendgrid;