export type ActiveCurrency = string | (() => string);
type PriceFormat = 'dollars' | 'cents';
type IntelligemsProviderProps {
organizationId: string;
activeCurrencyCode?: ActiveCurrency;
storefrontApiToken: string;
debug?: boolean;
priceFormat?: PriceFormat;
antiFlicker?: boolean;
config?: PluginConfigType;
cacheIntervalMinutes?: number;
}