/** Describe statistics information of a Modem */
export interface StatsModemInfo {
    /** Connection uptime */
    connectionUptime: number;
    /** Amount of CRC error detected */
    crcError: number;
    /** Modem uptime */
    deviceUptime: number;
    /** Downstream attenuation */
    downstreamAttenuation: number;
    /** Downstream margin */
    downstreamMargin: number;
    /** Downstream synchronization */
    downstreamSync: number;
    /** Amount of FEC error detected */
    fecError: number;
    /** Amount of HEC error detected */
    hecError: number;
    /** Time of last refresh */
    lastUpdate: string;
    /** Line modulation used */
    modulation: string;
    /** Count from last refresh in seconds */
    quarterHourStart: number;
    /** Synchronization uptime */
    syncUptime: number;
    /** Upstream attenuation */
    upstreamAttenuation: number;
    /** Upstream margin */
    upstreamMargin: number;
    /** Upstream synchronization */
    upstreamSync: number;
}
//# sourceMappingURL=StatsModemInfo.d.ts.map