import { Bitcoind } from '../../types'; type GetAddedNodeInfoParams = { bitcoind: Bitcoind; node?: string; }; /** * getaddednodeinfo ( "node" ) * * Returns information about the given added node, or all added nodes * (note that onetry addnodes are not listed here) * */ export declare function getAddedNodeInfo(params: GetAddedNodeInfoParams): Promise; export {};