import { NetworkStatisticsEntryUnion } from '@airgram-dev/core'; /** A full list of available network statistic entries */ export declare class NetworkStatisticsBaseModel { _: 'networkStatistics'; /** Point in time (Unix timestamp) when the app began collecting statistics */ sinceDate: number; /** Network statistics entries */ entries: NetworkStatisticsEntryUnion[]; }