import { ChannelTypeEnum, IEmailOptions, IEmailProvider, ISendMessageSuccessResponse } from '@notifire/core'; import { EmailJsConfig } from './emailjs.config'; export declare class EmailJsProvider implements IEmailProvider { private readonly config; readonly id = "emailjs"; readonly channelType: ChannelTypeEnum.EMAIL; private readonly client; constructor(config: EmailJsConfig); sendMessage({ from, to, subject, text, html, attachments, }: IEmailOptions): Promise; } //# sourceMappingURL=emailjs.provider.d.ts.map