import { Ipv4 } from '../Ipv4';
/** Spam's target information */
export interface SpamTarget {
    /** Timestamp when the email was sent */
    date: number;
    /** IP address of the target */
    destinationIp: Ipv4;
    /** The message-id of the email */
    messageId: string;
    /** Spam score for the email */
    spamscore: number;
}
//# sourceMappingURL=SpamTarget.d.ts.map