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; item_available?: string; } export interface ecomViewCartInfo { item_list_id: string; item_list_name: string; items: itemInfoEvent; } export interface ecomAddCartInfo { currency: string; value: string | number; items: itemInfoEvent[]; } export declare const getItemCategory: (item: any) => { prodCategory: string; prodsubCategory: string; prodsubscription: string; }; export declare const getItemData: (item: any, data?: any, isAvailable?: any) => itemInfoEvent; export declare const getEcomInfo: (items: any, category?: any, location?: any, eligibleBundle?: any) => any; export declare const getViewCartInfo: (items: any, category: any, location: any) => ecomViewCartInfo; export declare const getEcomCartInfo: (items: any, category: any, location: any, eligibleBundle?: any) => any; export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any, eligibleBundle?: any, pegaIntegration?: boolean) => void; export declare const getItemInfo: (products: any, showPrice: any, isEligible?: any) => itemInfoEvent; export declare const getBundleItemInfo: (products: any, showPrice: any, isEligible?: any) => any; export declare const getItemEventValueArray: (products: any, showPrice: any, isEligible?: any) => void;