import { Bitcoind } from '../../types'; type AddPeerAddressParams = { bitcoind: Bitcoind; address: string; port: number; tried?: boolean; }; /** * addpeeraddress "address" port ( tried ) * * Add the address of a potential peer to an address manager table. This RPC is for testing only. * */ export declare function addPeerAddress(params: AddPeerAddressParams): Promise; export {};