import { NetworkTypeUnion } from '@airgram-dev/core'; /** Contains information about the total amount of data that was used for calls */ export declare class NetworkStatisticsEntryCallBaseModel { _: 'networkStatisticsEntryCall'; /** * Type of the network the data was sent through. Call setNetworkType to maintain the * actual network type */ networkType: NetworkTypeUnion; /** Total number of bytes sent */ sentBytes: number; /** Total number of bytes received */ receivedBytes: number; /** Total call duration, in seconds */ duration: number; }