import type { AnsiLogger } from 'matterbridge/logger';
import type { EmailNotificationSettings } from '../model/RoborockPluginPlatformConfig.js';
export declare class EmailNotificationService {
    private readonly logger;
    private readonly transporter;
    private readonly from;
    private readonly recipient;
    constructor(settings: EmailNotificationSettings, logger: AnsiLogger);
    send(subject: string, body: string): Promise<void>;
    sendTestEmail(): Promise<void>;
}
//# sourceMappingURL=emailNotificationService.d.ts.map