import { ProviderType } from '../types'; export declare class EmailService { private provider; constructor(providerName: ProviderType); sendEmail(to: string, subject: string, body: string): Promise; }