import { Nullable } from '@mlytics/core-ts/core/type/basic'; import { CDN } from '../model/mcdn'; declare class MCDNStats { protected _cdns: Map; protected _networkBandwidth: number; constructor(); get cdns(): Map; set cdns(value: Map); get networkBandwidth(): number; set networkBandwidth(value: number); reset(): void; } declare class MCDNStatsHolder { protected static _instance?: Nullable; static get instance(): Nullable; static set instance(value: Nullable); static get cdns(): Map; static get networkBandwidth(): number; static set networkBandwidth(value: number); } export { MCDNStats, MCDNStatsHolder };