import { ActionType } from "@ngrx/store"; import { ITemplate } from '../../../template/models'; export declare enum ECartAction { ADD_TO_WISHLIST = "add to wishlist", REMOVE_FROM_WISHLIST = "remove from wishlist", OPEN_SHOPPING_CART = "open shopping cart", RESET_SHOPPING_CART = "reset shopping cart" } export declare const addToWishlist: import("@ngrx/store").ActionCreator { template: ITemplate; } & import("@ngrx/store/src/models").TypedAction>; export declare const removeFromWishlist: import("@ngrx/store").ActionCreator { template: ITemplate; } & import("@ngrx/store/src/models").TypedAction>; export declare const openShoppingCart: import("@ngrx/store").ActionCreator { open: boolean; } & import("@ngrx/store/src/models").TypedAction>; export declare const resetShoppingCart: import("@ngrx/store").ActionCreator import("@ngrx/store/src/models").TypedAction>; export type CartAction = ActionType | ActionType | ActionType | ActionType;