import { CurrencyControl } from "../stores/currency-control";
/**
 * Shopify api client
 */
export declare type ShopifyClient = any;
/**
 * Shopify's sdk settings
 */
export interface ShopifySettings {
    domain: string;
    storefrontAccessToken: string;
}
/**
 * Options for the shopperman shopify adapter
 */
export interface ShopifyAdapterOptions {
    settings: ShopifySettings;
    currencyControl: CurrencyControl;
}
