import { type CommerceEngineOptions } from '@coveo/headless/commerce'; export * from '@coveo/headless/commerce'; export * from '../constants'; export type * from '../types'; export * from '../utilities'; export interface BuildShopifyCommerceEngineOptions { commerceEngineOptions: CommerceEngineOptions; } /** * Builds the commerce engine for a Shopify store. * * This function initializes a commerce engine instance specific to a Shopify store by: * - Emitting a custom event to enable tracking and analytics with shopify webpixels. * - Building and returning the commerce engine with the provided options. * * @param commerceEngineOptions - Options to configure the commerce engine. * @returns The constructed commerce engine instance. */ export declare function buildShopifyCommerceEngine({ commerceEngineOptions, }: BuildShopifyCommerceEngineOptions): import("@coveo/headless/commerce").CommerceEngine<{}>;