import { Bitcoind } from '../../types'; type GetNetTotalsParams = { bitcoind: Bitcoind; }; /** * getnettotals * * Returns information about network traffic, including bytes in, bytes out, * and current system time. * */ export declare function getNetTotals(params: GetNetTotalsParams): Promise; export {};