import { Service, Services } from '../model/service.model'; import { ReplicaSet, ReplicaSets } from '../model/replicaset.model'; export declare class ReplicaSetView { readonly replicaset: ReplicaSet; readonly service: Service; readonly id: string; readonly name: string; readonly icon: string; readonly description: string; readonly exposeUrl: string; readonly replicas: number; readonly availableReplicas: number; readonly labels: Map; readonly images: Array; readonly annotations: Map; readonly creationTimestamp: any; constructor(replicaset: ReplicaSet, service: Service); } export declare class ReplicaSetViews extends Array { } export declare function createReplicaSetViews(replicasets: ReplicaSets, services: Services): ReplicaSetViews;