import type { DriverFactory } from "../types.mjs"; export interface BrevoDriverOptions { apiKey: string; endpoint?: string; fetch?: typeof fetch; } declare const brevo: DriverFactory; export default brevo;