import { IPricePoint } from '../../domain/IPricePoint'; import { ICashOffer } from '../../domain/ICashOffer'; import { IDealModel } from '../../domain/IDealModel'; import { IDealModelFactory } from './IDealModelFactory'; export declare class DealModelFactory implements IDealModelFactory { create(pricePoint: IPricePoint, offer: ICashOffer): IDealModel; }