import { Bitcoind } from '../../types'; type GetConnectionCountParams = { bitcoind: Bitcoind; }; /** * getconnectioncount * * Returns the number of connections to other nodes. * */ export declare function getConnectionCount(params: GetConnectionCountParams): Promise; export {};