export declare class EmailSettings {
    id: string;
    provider: string;
    smtp_host: string;
    smtp_port: number;
    smtp_secure: boolean;
    smtp_user: string;
    smtp_password: string;
    from_email: string;
    from_name: string;
    reply_to: string;
    email_footer: string;
    logo_url: string;
    primary_color: string;
    is_configured: boolean;
    last_test_at: Date;
    test_successful: boolean;
    created_at: Date;
    updated_at: Date;
}
