import { Bitcoind } from '../../types'; type UpTimeParams = { bitcoind: Bitcoind; }; /** * uptime * * Returns the total uptime of the server. * */ export declare function upTime(params: UpTimeParams): Promise; export {};