import { Quote } from '@prisma/client';
/**
 * Send quote notification to admin
 */
export declare const sendQuoteNotificationEmail: (quote: Quote) => Promise<void>;
/**
 * Send confirmation email to customer
 */
export declare const sendQuoteConfirmationEmail: (quote: Quote) => Promise<void>;
/**
 * Send contact form notification to admin
 */
export declare const sendContactNotificationEmail: (contact: {
    name: string;
    email: string;
    phone?: string;
    subject?: string;
    message: string;
}) => Promise<void>;
//# sourceMappingURL=email.service.d.ts.map