import { MailAdapter } from './index.js';

type BrevoAdapterConfig = {
    apiKey: string;
    fetchImpl?: typeof fetch;
};
declare function makeBrevoAdapter({ apiKey, fetchImpl, }: BrevoAdapterConfig): MailAdapter;

export { type BrevoAdapterConfig, makeBrevoAdapter };
