import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=get-raw-change-address.d.ts.map