/** * EProcCartIcon class */ export declare class EProcCartIcon { /** * To navigate to view details of items in Cart */ static viewItemsInCart(): Promise; /** * To get count of items present in cart * @return {int} count - number of items present in cart */ static getCountOfItemsInCart(): Promise; /** * To get sum total of amount of items present in cart * @return {String} amountWithCurrency - sum of amount of items in cart */ static getTotalAmountOfCartItems(): Promise; }