import type { Asset } from './Asset.js'; import type { Policy } from './Policy.js'; export type ContractOffer = { asset?: Asset; consumer?: string; contractEnd?: string; contractStart?: string; id?: string; offerEnd?: string; offerStart?: string; policy?: Policy; provider?: string; };