import Mdr from './mdr'; export type LiquidationType = 'business-day' | 'daily'; export default interface Condition { anticipation: number; anticipation_delay: number; payment_fixed_fee?: number; payment_spread_fee?: number; liquidation_type?: LiquidationType; mdrs: Mdr[]; }