export interface itemInfoEvent { item_id: string; item_name: string; affiliation: string | number; coupon: string | number; discount: number; index: number; item_brand: string; item_category: string; item_category2: string; item_category3: string; item_category4: string; item_category5: string; item_list_id: string; item_list_name: string; item_variant: string; location_id: string | number; price: number; quantity: number; promotion_id: string; } export interface ecomAddCartInfo { currency: string; value: string | number; items: itemInfoEvent[]; } export declare const getItemData: (item: any, data?: any) => itemInfoEvent; export declare const getEcomInfo: (items: any, category?: any, location?: any) => any; export declare const getEcomCartInfo: (items: any, category: any, location: any) => ecomAddCartInfo; export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any) => void; export declare const clickEvent: (eventName: string, text: string) => void; export declare const toggleEvent: (eventName: string, headline: string, selection: string) => void;