import type { CoveoShopifyCustomEvent } from '../types'; export type { CoveoShopifyCustomEvent } from '../types'; declare global { interface Window { Shopify?: { analytics: { publish: (eventName: string, eventData: CoveoShopifyCustomEvent) => void; }; }; } } export declare function publishCustomShopifyEvent(key: string, customData: CoveoShopifyCustomEvent): void;