import { Bitcoind } from '../../types';
type GetRpcInfoParams = {
    bitcoind: Bitcoind;
};
/**
 * getrpcinfo
 *
 * Returns details of the RPC server.
 *
 */
export declare function getRpcInfo(params: GetRpcInfoParams): Promise<any>;
export {};
