import { ScalableResource } from "./scalableresource.model"; import { ReplicationControllers, ReplicationController } from "./replicationcontroller.model"; export declare class ReplicaSet extends ScalableResource { defaultKind(): string; } export declare class ReplicaSets extends Array { } /** * Combines ReplicaSets and ReplicationControllers into a list removing any duplicates */ export declare function combineReplicaSets(replicasets: ReplicaSets, replicationControllers: ReplicationControllers): ReplicaSets; /** * Combines ReplicaSets and ReplicationControllers into a list removing any duplicates */ export declare function combineReplicaSet(replicaset: ReplicaSet, replicationController: ReplicationController): ReplicaSet;