import { TrackProductProps, TrackCartProps, TrackListProps, TrackPageProps, TrackUserProps, TrackExperimentProps, TrackAddToWishListProps } from './trackerRegistry'; import { TrackingEvent } from './Analytics'; export * from './trackerRegistry'; export * from './deprecatedTracking'; export declare const trackProductEvent: (args: TrackProductProps) => TrackingEvent; export declare const trackCartCheckoutEvent: (args: TrackCartProps) => TrackingEvent; export declare const trackCartEvent: (args: TrackCartProps) => TrackingEvent; export declare const trackListEvent: (args: TrackListProps) => TrackingEvent; export declare const trackPageEvent: (args: TrackPageProps) => TrackingEvent; export declare const trackUserEvent: (args: TrackUserProps) => TrackingEvent; export declare const trackLoginEvent: () => TrackingEvent; export declare const trackRegisterEvent: () => TrackingEvent; export declare const trackAddToWishListEvent: (args: TrackAddToWishListProps) => TrackingEvent; export declare const trackExperimentEvent: (args: TrackExperimentProps) => TrackingEvent;