declare type EmailRepIoResponse = { email: string; reputation: string; suspicious: boolean; references: number; details: { blacklisted: boolean; malicious_activity: boolean; malicious_activity_recent: boolean; credentials_leaked: boolean; credentials_leaked_recent: boolean; data_breach: boolean; first_seen: string; last_seen: string; domain_exists: boolean; domain_reputation: string; new_domain: boolean; days_since_domain_creation: number; suspicious_tld: boolean; spam: boolean; free_provider: boolean; disposable: boolean; deliverable: boolean; accept_all: boolean; valid_mx: boolean; primary_mx: string; spoofable: boolean; spf_strict: boolean; dmarc_enforced: boolean; profiles: string[]; }; logos: string[]; company_logo: string; explainer: string; }; export default EmailRepIoResponse;