/**
 * Real Postmark/SES delivery is Phase 4 scope (§3 stack table). This dev
 * implementation logs the link instead of sending mail — every call site
 * depends only on this interface, so swapping in a real provider later
 * touches this one file.
 */
export declare class EmailService {
    private readonly logger;
    sendVerificationEmail(to: string, token: string): Promise<void>;
    sendPasswordResetEmail(to: string, token: string): Promise<void>;
    sendMagicLinkEmail(to: string, token: string): Promise<void>;
    sendInviteEmail(to: string, workspaceName: string, token: string): Promise<void>;
}
//# sourceMappingURL=email.service.d.ts.map