import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=add-peer-address.d.ts.map