import { Bitcoind } from '../../types.js';
type GetNodeAddressesParams = {
    bitcoind: Bitcoind;
    count?: number;
    network?: string;
};
/**
 * getnodeaddresses ( count "network" )
 *
 * Return known addresses, after filtering for quality and recency.
 * These can potentially be used to find new peers in the network.
 * The total number of addresses known to the node may be higher.
 *
 */
export declare function getNodeAddresses(params: GetNodeAddressesParams): Promise<any>;
export {};
//# sourceMappingURL=get-node-addresses.d.ts.map