import { Bitcoind } from '../../types'; type GetaddrmanInfoParams = { bitcoind: Bitcoind; }; /** * getaddrmaninfo * * Provides information about the node's address manager by returning the number of addresses in the `new` and `tried` tables and their sum for all networks. * */ export declare function getaddrmanInfo(params: GetaddrmanInfoParams): Promise; export {};