import { Bitcoind } from '../../types'; type GetNewAddressParams = { bitcoind: Bitcoind; label?: string; address_type?: string; }; /** * getnewaddress ( "label" "address_type" ) * * Returns a new Bitcoin address for receiving payments. * If 'label' is specified, it is added to the address book * so payments received with the address will be associated with 'label'. * */ export declare function getNewAddress(params: GetNewAddressParams): Promise; export {};