import { Currency, ICurrency } from "@selldone/core-js/enums/payment/Currency";
export declare class CurrencyDatabase {
    /** Name of the shop for which the API operations will be performed. */
    shop_name: string;
    constructor(shop_name: string);
    getCurrency(): ICurrency;
    saveCurrency(currency: ICurrency | keyof typeof Currency): void;
}
