import { Discount, DiscountEnhanced, Discounts, OrderType, ServiceType } from '@open-tender/types';
export declare const makeValidDeals: (deals: Discounts | null, orderType?: OrderType | null, serviceType?: ServiceType | null, revenueCenterId?: number | null) => Discounts;
export declare const makeLimitations: (item: Discount) => string;
export declare const makeDiscountEnhanced: (item: Discount) => DiscountEnhanced;
export declare const getIsDealExpired: (item: Discount) => boolean;
export declare const getIsRewardExpired: (item: Discount) => boolean;
