import { Bitcoind } from '../../types'; type GetBalancesParams = { bitcoind: Bitcoind; }; /** * getbalances * * Returns an object with all balances in BTC. * */ export declare function getBalances(params: GetBalancesParams): Promise; export {};