/** A message log from the DSLAM */
export interface DslamPortLog {
    /**  */
    date: string;
    /** The last time this message occured */
    lastOccurrenceDate: string;
    /**  */
    message: string;
    /** The number of times this message occured between date and lastOccurrenceDate */
    numberOfOccurrences: number;
}
//# sourceMappingURL=DslamPortLog.d.ts.map