import { ModelData, Model } from "@kubernetes-models/base"; export interface ICountRange { /** * Max represents the maximum number of nodes in a tier. */ "max": number; /** * Min represents the minimum number of nodes in a tier. */ "min": number; } export declare class CountRange extends Model implements ICountRange { "max": number; "min": number; constructor(data?: ModelData); } export type { ICountRange as IComGithubElasticCloudOnK8sV3PkgApisCommonV1alpha1CountRange, CountRange as ComGithubElasticCloudOnK8sV3PkgApisCommonV1alpha1CountRange };