import { Bitcoind } from '../../types'; type GetRawChangeAddressParams = { bitcoind: Bitcoind; address_type?: string; }; /** * getrawchangeaddress ( "address_type" ) * * Returns a new Bitcoin address, for receiving change. * This is for use with raw transactions, NOT normal use. * */ export declare function getRawChangeAddress(params: GetRawChangeAddressParams): Promise; export {};