import { IOffer } from '../../domain/IOffer'; import { IPricePoint } from '../../domain/IPricePoint'; export declare const isEnabled: ({ disabled }: IOffer) => boolean; export declare const isExpired: ({ activeDate }: IOffer) => boolean; export declare const isOfferValid: (offer: IOffer) => boolean; export declare const hasPricePoint: (pricePoints: IPricePoint[]) => (offer: IOffer) => boolean; export declare const findPricePoint: (pricePoints: IPricePoint[]) => (value: number) => IPricePoint;