import { Currency } from "@selldone/core-js/enums/payment/Currency";
import { XapiUser } from "../XapiUser";
export default function setUserCurrency(this: XapiUser, currency: keyof typeof Currency): Promise<xapi.user.currency.put.IResponse>;
export declare namespace xapi.user.currency.put {
    interface IResponse {
        success: boolean;
        currency: keyof typeof Currency;
    }
}
