import { DynamicPollTheme, PostVoteActionMap } from './types';
export interface ShopifyConfig {
    apiKey: string;
    storeId: string;
    storeUrl: string;
    dynamicPollTheme: DynamicPollTheme;
    defaultPostVoteActionMap?: PostVoteActionMap;
}
export declare function setShopifyConfig(config: ShopifyConfig): void;
export declare function getShopifyConfig(): ShopifyConfig | null;
