import { CouponDatabase } from "./localstorage/coupon.database";
import { CurrencyDatabase } from "./localstorage/currency.database";
import { LanguageDatabase } from "./localstorage/language.database";
export declare class StorefrontDatabase {
    /** Name of the shop for which the API operations will be performed. */
    shop_name: string;
    coupon: CouponDatabase;
    currency: CurrencyDatabase;
    language: LanguageDatabase;
    constructor(shop_name: string);
}
