import { Bitcoind } from '../../types'; type GetWalletInfoParams = { bitcoind: Bitcoind; }; /** * getwalletinfo * * Returns an object containing various wallet state info. * */ export declare function getWalletInfo(params: GetWalletInfoParams): Promise; export {};