import { HistoryDto, IdentityDto } from './../../shared'; import { ClusterConfigDto } from './cluster-config.dto'; import { ClusterEntityDto } from './entitie.dto'; export declare class ClusterDto { clusterConfig: ClusterConfigDto; entities: ClusterEntityDto[]; history: HistoryDto; identity: IdentityDto; methodKey: string; size: number; constructor(d?: ClusterDto); }