import { IdentityDto } from './../shared/identity.dto'; import { ContactDto } from './../shared/contact.dto'; import { BindingDto } from './binding.dto'; import { PropertyDto } from './property.dto'; import { HistoryDto } from './../shared/history.dto'; import { InheritanceDto } from './inheritance/inheritance.dto'; export declare class EntityDto { parent?: IdentityDto; picture?: string; type?: string; source?: string; state?: string; tags?: IdentityDto[]; bindings?: BindingDto[]; properties?: PropertyDto[]; contacts?: ContactDto[]; inheritance?: InheritanceDto; history?: HistoryDto; constructor(d?: EntityDto); }