import { CreateEmailRequest, DraftEmail, Email } from '../models/types'; import { EmailTransporter } from './EmailTransporter'; export interface ScalewayConfig { secretKey: string; projectId: string; region?: 'fr-par'; } export declare class ScalewayTransporter implements EmailTransporter { private readonly client; private readonly projectId; private readonly region; constructor(config: ScalewayConfig); sendEmail(email: DraftEmail | CreateEmailRequest): Promise; getEmail(emailId: string): Promise; }