import { IdentityDto } from './../shared/identity.dto'; import { VersionDto } from './../shared/version.dto'; import { PartyDto } from './../shared/party.dto'; import { EntityDto } from './../entity/entity.dto'; export declare class ContractDto { businessUnit: string; entity: EntityDto; identity: IdentityDto; parties: PartyDto[]; rank: number; startDateTime: string; endDateTime: string; type: string; version: VersionDto; constructor(d?: ContractDto); }