import { TrackProductProps, TrackCartProps, TrackListProps, TrackPageProps, TrackingFunctionContext } from './trackerRegistry'; /** * @deprecated */ export declare const trackProduct: (args: TrackProductProps) => (context: TrackingFunctionContext) => void; /** * @deprecated */ export declare const trackCartCheckout: (args: TrackCartProps) => (context: TrackingFunctionContext) => void; /** * @deprecated */ export declare const trackList: (args: TrackListProps) => (context: TrackingFunctionContext) => void; /** * @deprecated */ export declare const trackPage: (args: TrackPageProps) => (context: TrackingFunctionContext) => void;