/**
 * ENUM: Customer's action on the basket.
 */
export declare enum ActionEnum {
    ADD = "add",
    REMOVE = "remove",
    EMPTY = "empty"
}
