import { Contract } from '../order/Contract';
import { LineOffer } from './LineOffer';
/** Informations related to a line offer */
export interface LineOffersAndContracts {
    /** Informations related to a line contracts */
    contracts: Contract[];
    /** Informations related to a line offer */
    offers: LineOffer[];
}
//# sourceMappingURL=LineOffersAndContracts.d.ts.map