import { Bitcoind } from '../../types'; type GetAddressInfoParams = { bitcoind: Bitcoind; address: string; }; /** * getaddressinfo "address" * * Return information about the given bitcoin address. * Some of the information will only be present if the address is in the active wallet. * */ export declare function getAddressInfo(params: GetAddressInfoParams): Promise; export {};