import { NetworkStatisticsEntryInputUnion } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Adds the specified data to data usage statistics. Can be called before authorization * @param {Object} params * @param {NetworkStatisticsEntryInputUnion} [params.entry] - The network statistics * entry with the data to be added to statistics * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type AddNetworkStatisticsMethod = (params: AddNetworkStatisticsParams, state?: Record) => Promise; export interface AddNetworkStatisticsParams { /** The network statistics entry with the data to be added to statistics */ entry?: NetworkStatisticsEntryInputUnion; }