import { Bitcoind } from '../../types'; type GetPeerInfoParams = { bitcoind: Bitcoind; }; /** * getpeerinfo * * Returns data about each connected network peer as a json array of objects. * */ export declare function getPeerInfo(params: GetPeerInfoParams): Promise; export {};